From: wessels <> Date: Tue, 4 Sep 2001 02:54:26 +0000 (+0000) Subject: test(1) complains about == operator. X-Git-Tag: SQUID_3_0_PRE1~1417 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6ff4419cd5270e24db937065f9acf7b98b9640d;p=thirdparty%2Fsquid.git test(1) complains about == operator. *manually* patched configure because automake stuff seems really broken and unwieldy right now. --- diff --git a/configure b/configure index ca7fafea12..76596d2c2c 100755 --- a/configure +++ b/configure @@ -1930,7 +1930,7 @@ STORE_LIBS="`echo $STORE_OBJS|sed -e 's%fs/%%g'`" STORE_MODULE_SUBDIRS= for fs in $STORE_MODULES none; do - if test $fs == diskd; then + if test "$fs" = "diskd"; then STORE_MODULE_SUBDIRS="$STORE_MODULE_SUBDIRS $fs" fi done diff --git a/configure.in b/configure.in index 04be8525ac..78d58ea400 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ dnl Configuration input file for Squid dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.229 2001/08/31 11:19:06 robertc Exp $ +dnl $Id: configure.in,v 1.230 2001/09/03 20:54:27 wessels Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AC_INIT(src/main.c) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE(Squid, 2.5-DEVEL) AM_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.229 $)dnl +AC_REVISION($Revision: 1.230 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) dnl Set default LDFLAGS @@ -348,7 +348,7 @@ dnl remove all but diskd - its the only module that needs to recurse dnl into the sub directory STORE_MODULE_SUBDIRS= for fs in $STORE_MODULES none; do - if test $fs == diskd; then + if test "$fs" = "diskd"; then STORE_MODULE_SUBDIRS="$STORE_MODULE_SUBDIRS $fs" fi done