]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
shell programming fix
authorwessels <>
Thu, 9 Apr 1998 04:59:02 +0000 (04:59 +0000)
committerwessels <>
Thu, 9 Apr 1998 04:59:02 +0000 (04:59 +0000)
configure
configure.in

index c7591bbfe63fdfbbb9c95ba2d92fc120fdc1dbd0..54e2bb0dfd88b17879c28ddffd927e7d1093603c 100755 (executable)
--- a/configure
+++ b/configure
@@ -564,7 +564,7 @@ fi
 
 
 
-# From configure.in Revision: 1.117 
+# From configure.in Revision: 1.118 
 ac_aux_dir=
 for ac_dir in cfgaux $srcdir/cfgaux; do
   if test -f $ac_dir/install-sh; then
@@ -3890,7 +3890,7 @@ cat >> confdefs.h <<EOF
 #define SQUID_MAXFD $SQUID_MAXFD
 EOF
 
-if  "$SQUID_MAXFD" -lt 512 ; then
+if test "$SQUID_MAXFD" -lt 512 ; then
     echo "WARNING: $SQUID_MAXFD may not be enough filedescriptors if your"
     echo "         cache will be very busy.  Please see the FAQ page"
     echo "         http://squid.nlanr.net/Squid/FAQ/FAQ-10.html#filedescriptors"
index 4d66620e50e7df743f77265d7ee0bb39e6aa1cda..924811cc1ce6a8dc78f1f5e6f27fa8a186a00cec 100644 (file)
@@ -3,13 +3,13 @@ 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.118 1998/04/08 22:20:25 wessels Exp $
+dnl  $Id: configure.in,v 1.119 1998/04/08 22:59:02 wessels Exp $
 dnl
 dnl
 dnl
 AC_INIT(src/main.c)
 AC_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.118 $)dnl
+AC_REVISION($Revision: 1.119 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AC_CONFIG_AUX_DIR(cfgaux)
 
@@ -826,7 +826,7 @@ SQUID_MAXFD=256,
 SQUID_MAXFD=256)
 AC_MSG_RESULT($SQUID_MAXFD)
 AC_DEFINE_UNQUOTED(SQUID_MAXFD, $SQUID_MAXFD)
-if [ "$SQUID_MAXFD" -lt 512 ]; then
+if test "$SQUID_MAXFD" -lt 512 ; then
     echo "WARNING: $SQUID_MAXFD may not be enough filedescriptors if your"
     echo "         cache will be very busy.  Please see the FAQ page"
     echo "         http://squid.nlanr.net/Squid/FAQ/FAQ-10.html#filedescriptors"