The Samba-Bugzilla – Attachment 7896 Details for
Bug 8146
Bug in configure.in (and configure too), test with == rather than =
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
same patch in git format
0001-configure-fix-wrong-test-syntax.patch (text/plain), 1.12 KB, created by
Björn Jacke
on 2012-09-14 18:12:00 UTC
(
hide
)
Description:
same patch in git format
Filename:
MIME Type:
Creator:
Björn Jacke
Created:
2012-09-14 18:12:00 UTC
Size:
1.12 KB
patch
obsolete
>From ca5d162ddcf25f0bc8fd38117b69f402276571ee Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Bj=C3=B6rn=20Jacke?= <bj@sernet.de> >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! >--- > source3/configure.in | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/source3/configure.in b/source3/configure.in >index 8da0be3..014d844 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/.* //'` >-- >1.7.11.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
bjacke
:
review+
Actions:
View
Attachments on
bug 8146
: 7896