svn commit: samba r2233 - in branches/SAMBA_3_0/source: .

tridge at samba.org tridge at samba.org
Mon Sep 6 10:22:03 GMT 2004


Author: tridge
Date: 2004-09-06 10:22:03 +0000 (Mon, 06 Sep 2004)
New Revision: 2233

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_3_0/source&rev=2233&nolog=1

Log:
fixed 3 places where == is mistakenly used instead of = in bourne
shell script statements in configure.



Modified:
   branches/SAMBA_3_0/source/configure.in


Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in	2004-09-06 00:37:58 UTC (rev 2232)
+++ branches/SAMBA_3_0/source/configure.in	2004-09-06 10:22:03 UTC (rev 2233)
@@ -716,7 +716,7 @@
 		CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`"
 		LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`"
 		PRINT_LIBS="$PRINT_LIBS `$CUPS_CONFIG --libs`"
-	elif test x"$enable_cups" == x"yes"; then
+	elif test x"$enable_cups" = x"yes"; then
 		AC_MSG_ERROR(Cups support required but cups-config not located.  Make sure cups-devel related files are installed.)
         fi
 fi
@@ -2421,7 +2421,7 @@
     fi
 fi
 
-if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no" && test x"$have_afs_headers" == x"yes"; then
+if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no" && test x"$have_afs_headers" = x"yes"; then
     AC_DEFINE(WITH_FAKE_KASERVER,1,[Whether to include AFS fake-kaserver support])
 fi
 
@@ -2443,7 +2443,7 @@
   AC_MSG_RESULT(no)
 )
 
-if test x"$samba_cv_WITH_VFS_AFSACL" == x"yes"; then
+if test x"$samba_cv_WITH_VFS_AFSACL" = x"yes"; then
    default_shared_modules="$default_shared_modules vfs_afsacl"
 fi
 	



More information about the samba-cvs mailing list