[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Tue Sep 18 00:35:00 MDT 2012


The branch, v3-6-test has been updated
       via  03a93b8 configure: fix wrong test == syntax
      from  9b3a4a1 s3-rap: Open printers with the right access mask.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 03a93b81d63b686ba57d106002584b893d885da3
Author: Björn Jacke <bj at sernet.de>
Date:   Fri Sep 14 20:08:19 2012 +0200

    configure: fix wrong test == syntax
    
    This fixes bug #8146. Thanks to Joachim Schmitz for reporting!

-----------------------------------------------------------------------

Summary of changes:
 source3/configure.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index eef3d13..fc1293a 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2138,7 +2138,7 @@ fi
 if test "x$enable_external_libtalloc" = xno
 then
 	m4_include(../lib/talloc/libtalloc.m4)
-	if test x"$USESHARED" == x"no" ; then
+	if test x"$USESHARED" = x"no" ; then
 		LINK_LIBTALLOC=STATIC
 	fi
 	LIBTALLOCVERSION=`grep ^VERSION ${tallocdir}/wscript | sed -e "s/'//g" -e 's/.* //'`
@@ -2179,7 +2179,7 @@ AC_SUBST(LIBTDB_OBJ0)
 if test "x$enable_external_libtdb" = xno
 then
 	m4_include(../lib/tdb/libtdb.m4)
-	if test x"$USESHARED" == x"no" ; then
+	if test x"$USESHARED" = x"no" ; then
 		LINK_LIBTDB=STATIC
 	fi
 	LIBTDBVERSION=`grep ^VERSION ${tdbdir}/wscript | sed -e "s/'//g" -e 's/.* //'`


-- 
Samba Shared Repository


More information about the samba-cvs mailing list