diff bootstrap.sh @ 650:859011fe530b

"test -e" does not exist in /bin/sh of some systems, use "test -f" instead.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 20 Sep 2007 19:53:05 +0000
parents 94c531f0c0a4
children ba851baac5a0
line wrap: on
line diff
--- a/bootstrap.sh	Thu Sep 20 19:53:02 2007 +0000
+++ b/bootstrap.sh	Thu Sep 20 19:53:05 2007 +0000
@@ -68,7 +68,7 @@
 
 # Check if gettext is used
 for i in configure.ac configure.in; do
-	if test -e "$i"; then
+	if test -f "$i"; then
 		k=`grep AM_GNU_GETTEXT $i`
 	fi
 done