# HG changeset patch # User Matti Hamalainen # Date 1190317985 0 # Node ID 859011fe530b5edcdbd6673d9d30788d6d6c7c00 # Parent 7de614ecb7b660a063f38c3e9040efaee3beb826 "test -e" does not exist in /bin/sh of some systems, use "test -f" instead. diff -r 7de614ecb7b6 -r 859011fe530b bootstrap.sh --- 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