comparison 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
comparison
equal deleted inserted replaced
649:7de614ecb7b6 650:859011fe530b
66 fi 66 fi
67 done 67 done
68 68
69 # Check if gettext is used 69 # Check if gettext is used
70 for i in configure.ac configure.in; do 70 for i in configure.ac configure.in; do
71 if test -e "$i"; then 71 if test -f "$i"; then
72 k=`grep AM_GNU_GETTEXT $i` 72 k=`grep AM_GNU_GETTEXT $i`
73 fi 73 fi
74 done 74 done
75 75
76 if test -n "$k"; then 76 if test -n "$k"; then