All of lore.kernel.org
 help / color / mirror / Atom feed
* build: change equality for old bash
@ 2008-06-22 16:50 Jan Engelhardt
  2008-06-23  9:37 ` Patrick McHardy
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Engelhardt @ 2008-06-22 16:50 UTC (permalink / raw)
  To: kaber; +Cc: Netfilter Developer Mailing List

commit 1063d1608700beb14687078b526d11bf1cf0be5f
Author: Jan Engelhardt <jengelh@medozas.de>
Date:   Sun Jun 22 14:45:48 2008 +0200

build: change equailty test for old bash
    
Michael used GNU bash, version 1.14.7(1), which apparently does not
seem to know about the double ("==") variant of equality tests.
    
Reported-by: Michael Teicher <mteicher@gmail.com>
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 configure.ac |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/configure.ac b/configure.ac
index f0ade13..22ebb7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -47,10 +47,10 @@ if test "$ac_cv_header_linux_dccp_h" != "yes"; then
 fi;
 AC_SUBST([blacklist_modules])
 
-AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" == "yes"])
-AM_CONDITIONAL([ENABLE_SHARED], [test "$enable_shared" == "yes"])
-AM_CONDITIONAL([ENABLE_DEVEL], [test "$enable_devel" == "yes"])
-AM_CONDITIONAL([ENABLE_LIBIPQ], [test "$enable_libipq" == "yes"])
+AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" = "yes"])
+AM_CONDITIONAL([ENABLE_SHARED], [test "$enable_shared" = "yes"])
+AM_CONDITIONAL([ENABLE_DEVEL], [test "$enable_devel" = "yes"])
+AM_CONDITIONAL([ENABLE_LIBIPQ], [test "$enable_libipq" = "yes"])
 
 regular_CFLAGS="-D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 \
 	-D_REENTRANT -Wall -Waggregate-return -Wmissing-declarations \


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: build: change equality for old bash
  2008-06-22 16:50 build: change equality for old bash Jan Engelhardt
@ 2008-06-23  9:37 ` Patrick McHardy
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick McHardy @ 2008-06-23  9:37 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: Netfilter Developer Mailing List

Jan Engelhardt wrote:
> commit 1063d1608700beb14687078b526d11bf1cf0be5f
> Author: Jan Engelhardt <jengelh@medozas.de>
> Date:   Sun Jun 22 14:45:48 2008 +0200
> 
> build: change equailty test for old bash
>     
> Michael used GNU bash, version 1.14.7(1), which apparently does not
> seem to know about the double ("==") variant of equality tests.

Applied, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-06-23  9:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-22 16:50 build: change equality for old bash Jan Engelhardt
2008-06-23  9:37 ` Patrick McHardy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.