jim 99/09/11 04:49:32
Modified: src/lib/apr configure.in
Log:
-x isn't present on 7th edition shells, so
move down to -f
Revision Changes Path
1.10 +1 -1 apache-2.0/src/lib/apr/configure.in
Index: configure.in
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/lib/apr/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- configure.in 1999/09/10 16:52:42 1.9
+++ configure.in 1999/09/11 11:49:31 1.10
@@ -50,7 +50,7 @@
AC_C_INLINE
# Use /bin/sh if it exists, otherwise go looking for sh in the path
-if (test -z "$SH" -a -x /bin/sh); then
+if (test -z "$SH" -a -f /bin/sh); then
SH="/bin/sh"
fi
AC_CHECK_PROG(SH, sh, sh)
|