randy 98/12/29 22:10:04
Modified: . configure
Log:
Shell compatibility change to allow this to work with QNX's /bin/sh
when not specifying any command line arguments.
Revision Changes Path
1.64 +5 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /home/cvs/apache-1.3/configure,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- configure 1998/12/16 15:57:28 1.63
+++ configure 1998/12/30 06:10:03 1.64
@@ -252,7 +252,11 @@
*--with-layout=* )
;;
* )
- set -- '--with-layout=Apache' "$@"
+ if [ "x$@" = x ]; then
+ set -- '--with-layout=Apache'
+ else
+ set -- '--with-layout=Apache' "$@"
+ fi
;;
esac