]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
configure: fix wrong test == syntax
authorBjörn Jacke <bj@sernet.de>
Fri, 14 Sep 2012 18:08:19 +0000 (20:08 +0200)
committerKarolin Seeger <kseeger@samba.org>
Tue, 18 Sep 2012 06:35:32 +0000 (08:35 +0200)
This fixes bug #8146. Thanks to Joachim Schmitz for reporting!

source3/configure.in

index eef3d13481c44cbc080d36d0b7e23c73a1cf9ad5..fc1293aa941f74ffe86b61edf6f81141f9cefa9d 100644 (file)
@@ -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/.* //'`