changeset 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 7de614ecb7b6
children b3498298c4b3
files bootstrap.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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