Use test -f instead of test -e; As suggested by Sebastian Wilhelmi 0-mig

svn path=/trunk/; revision=186
This commit is contained in:
Arturo Espinosa
1998-04-22 17:25:13 +00:00
parent 4884d2bf8e
commit a9235af469

View File

@ -69,7 +69,7 @@ fi
for j in `find $srcdir -name configure.in -print`
do
i=`dirname $j`
if test -e $i/NO-AUTO-GEN; then
if test -f $i/NO-AUTO-GEN; then
echo skipping $i -- flagged as no auto-gen
else
macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $j`