]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Error installation failed on "make dist", as "errors/<lang>/generic" is not
authorhno <>
Thu, 27 Dec 2001 08:03:17 +0000 (08:03 +0000)
committerhno <>
Thu, 27 Dec 2001 08:03:17 +0000 (08:03 +0000)
included in "make dist". Look for ERR_ACCESS_DENIED instead

configure.in

index 1c6f1b9eb08f7d2bf9bcda49c6758fb85778950c..3da7be4b364ce61797353e3f1f93b9962907cd83 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.253 2001/12/24 15:33:41 adrian Exp $
+dnl  $Id: configure.in,v 1.254 2001/12/27 01:03:17 hno Exp $
 dnl
 dnl
 dnl
@@ -11,7 +11,7 @@ AC_INIT(src/main.c)
 AC_CONFIG_AUX_DIR(cfgaux)
 AM_INIT_AUTOMAKE(squid, 2.6-DEVEL)
 AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.253 $)dnl
+AC_REVISION($Revision: 1.254 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -642,7 +642,7 @@ AC_ARG_ENABLE(err-languages,
 ],[
     ERR_LANGUAGES=
     for l in $srcdir/errors/*; do
-        if test -f $l/generic; then
+        if test -f $l/ERR_ACCESS_DENIED; then
             ERR_LANGUAGES="$ERR_LANGUAGES `basename $l`"
        fi
     done