From 61bdc8f00e0e6b9e3fe456da0bb590b288a190c8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Fri, 14 Sep 2012 20:08:19 +0200 Subject: [PATCH] configure: fix wrong test == syntax This fixes bug #8146. Thanks to Joachim Schmitz for reporting! (cherry picked from commit 03a93b81d63b686ba57d106002584b893d885da3) --- source3/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index eef3d13481c..fc1293aa941 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/.* //'` -- 2.11.4.GIT