summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-22 17:25:13 +0000
committerArturo Espinosa <unammx@src.gnome.org>1998-04-22 17:25:13 +0000
commit113e761b31dadabc1453d9707fc9ce47a630d25e (patch)
tree83591df1221dad446ea27f8c29ad113599daf1c8
parent32e73badd2b908257f20518009f3abfb33ea290b (diff)
downloadgnome-common-113e761b31dadabc1453d9707fc9ce47a630d25e.tar.gz
Use test -f instead of test -e; As suggested by Sebastian Wilhelmi 0-mig
svn path=/trunk/; revision=197
-rw-r--r--macros/autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh
index 1e39bf1..4ece848 100644
--- a/macros/autogen.sh
+++ b/macros/autogen.sh
@@ -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`