svn commit: samba r15289 - branches/SAMBA_3_0/source trunk/source

tpot at samba.org tpot at samba.org
Wed Apr 26 19:15:16 GMT 2006


Author: tpot
Date: 2006-04-26 19:15:11 +0000 (Wed, 26 Apr 2006)
New Revision: 15289

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15289

Log:
Put references to $PICFLAGS in quotes.  Fixes #3725.

Modified:
   branches/SAMBA_3_0/source/configure.in
   trunk/source/configure.in


Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in	2006-04-26 16:52:45 UTC (rev 15288)
+++ branches/SAMBA_3_0/source/configure.in	2006-04-26 19:15:11 UTC (rev 15289)
@@ -2913,7 +2913,7 @@
 
 # Conditions under which smbwrapper should not be built.
 
-	if test x$PICFLAGS = x; then
+	if test x"$PICFLAGS" = x; then
 	   echo No support for PIC code - disabling smbwrapper and smbsh
 	   WRAPPROG=""
 	   WRAP=""
@@ -3862,7 +3862,7 @@
 
        # Conditions under which pam_smbpass should not be built.
 
-       if test x$PICFLAGS = x; then
+       if test x"$PICFLAGS" = x; then
           AC_MSG_ERROR([No support for PIC code])
        elif test x"$ac_cv_header_security_pam_appl_h" = x"no"; then
 	  AC_MSG_ERROR([No security/pam_appl.h found])

Modified: trunk/source/configure.in
===================================================================
--- trunk/source/configure.in	2006-04-26 16:52:45 UTC (rev 15288)
+++ trunk/source/configure.in	2006-04-26 19:15:11 UTC (rev 15289)
@@ -2913,7 +2913,7 @@
 
 # Conditions under which smbwrapper should not be built.
 
-	if test x$PICFLAGS = x; then
+	if test x"$PICFLAGS" = x; then
 	   echo No support for PIC code - disabling smbwrapper and smbsh
 	   WRAPPROG=""
 	   WRAP=""
@@ -3862,7 +3862,7 @@
 
        # Conditions under which pam_smbpass should not be built.
 
-       if test x$PICFLAGS = x; then
+       if test x"$PICFLAGS" = x; then
           AC_MSG_ERROR([No support for PIC code])
        elif test x"$ac_cv_header_security_pam_appl_h" = x"no"; then
 	  AC_MSG_ERROR([No security/pam_appl.h found])



More information about the samba-cvs mailing list