]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Oops.. now it should find the auth modules again.
authorhno <>
Sat, 30 Nov 2002 05:36:37 +0000 (05:36 +0000)
committerhno <>
Sat, 30 Nov 2002 05:36:37 +0000 (05:36 +0000)
configure.in

index 366028da45cdee64092e5ea51664569bc7cdb6c0..0446b3aa88484e885156195af9c65f029431f910 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.305 2002/11/29 22:22:18 hno Exp $
+dnl  $Id: configure.in,v 1.306 2002/11/29 22:36:37 hno Exp $
 dnl
 dnl
 dnl
@@ -13,7 +13,7 @@ AC_CONFIG_SRCDIR([src/main.cc])
 AC_CONFIG_AUX_DIR(cfgaux)
 AM_INIT_AUTOMAKE(squid, 3.0-DEVEL)
 AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.305 $)dnl
+AC_REVISION($Revision: 1.306 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -914,7 +914,7 @@ AC_ARG_ENABLE(auth,
   yes)
         for dir in $srcdir/src/auth/*; do
            module="`basename $dir`"
-            if test -f $module/auth_${module}.cc; then
+            if test -f $dir/auth_${module}.cc; then
                 AUTH_MODULES="$AUTH_MODULES $module"
             fi
         done