rse 98/05/29 13:41:57
Modified: . configure
Log:
We use [ all the time and are not as paranoid as GNU Autoconf itself.
Revision Changes Path
1.29 +2 -2 apache-1.3/configure
Index: configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/configure,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- configure 1998/05/29 07:59:59 1.28
+++ configure 1998/05/29 20:41:57 1.29
@@ -121,8 +121,8 @@
for dir in $PATH; do
OIFS2="$IFS" IFS="$DIFS"
for exe in perl5 perl miniperl; do
- if test -f "$dir/$exe"; then
- if test -x "$dir/$exe"; then
+ if [ -f "$dir/$exe" ]; then
+ if [ -x "$dir/$exe" ]; then
PERL="$dir/$exe"
break 2
fi