diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-23 01:25:13 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-23 01:25:13 +0800 |
commit | a9235af4690ede0b325f7d4f6208369cf6c55a22 (patch) | |
tree | 6fd379ec604e0ec1805411a1552cdd57e9f6c130 /macros | |
parent | 4884d2bf8e86a5cfd148a4f51cae7fc07812dbe1 (diff) | |
download | gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.tar gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.tar.gz gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.tar.bz2 gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.tar.lz gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.tar.xz gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.tar.zst gsoc2013-evolution-a9235af4690ede0b325f7d4f6208369cf6c55a22.zip |
Use test -f instead of test -e; As suggested by Sebastian Wilhelmi 0-mig
svn path=/trunk/; revision=186
Diffstat (limited to 'macros')
-rw-r--r-- | macros/autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 1e39bf1060..4ece8483b7 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` |