rse 99/05/17 00:09:13
Modified: . configure
src CHANGES
Log:
Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
their brain-dead /bin/sh.
PR: 4372
Revision Changes Path
1.92 +5 -0 apache-1.3/configure
Index: configure
===================================================================
RCS file: /home/cvs/apache-1.3/configure,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- configure 1999/05/06 00:44:16 1.91
+++ configure 1999/05/17 07:09:06 1.92
@@ -66,6 +66,11 @@
'
##
+## avoid brain dead shells on Ultrix and friends
+##
+test -f /bin/sh5 && exec /bin/sh5 $0 "$@"
+
+##
## the paths to the Apache source tree
##
top=.
1.1357 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1356
retrieving revision 1.1357
diff -u -r1.1356 -r1.1357
--- CHANGES 1999/05/17 06:58:55 1.1356
+++ CHANGES 1999/05/17 07:09:10 1.1357
@@ -1,4 +1,7 @@
Changes with Apache 1.3.7
+
+ *) Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
+ their brain-dead /bin/sh. [Ralf S. Engelschall] PR#4372
*) Better DSO flags recognition on NetBSD platforms using ELF.
[Todd Vierling <[EMAIL PROTECTED]>] PR#4310