]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
test(1) complains about == operator.
authorwessels <>
Tue, 4 Sep 2001 02:54:26 +0000 (02:54 +0000)
committerwessels <>
Tue, 4 Sep 2001 02:54:26 +0000 (02:54 +0000)
*manually* patched configure because automake stuff seems really
broken and unwieldy right now.

configure
configure.in

index ca7fafea1246eef4ba3610a7fddd0cc680baa6db..76596d2c2ca2f98e9b16380876fbfe01972aea34 100755 (executable)
--- 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
index 04be8525ac8d7c24078d21b09d8fe065516a8317..78d58ea4006269b474ca819f32113686371de6c4 100644 (file)
@@ -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