rse 98/12/30 14:44:59
Modified: . configure
Log:
Never use $@ inside quotes when you don't want to expand it into _multiple_
quoted args. So, for the `test' $* _has_ to be used while for the `set' "$@"
is correct (here $* would break it).
Revision Changes Path
1.65 +1 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /home/cvs/apache-1.3/configure,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- configure 1998/12/30 06:10:03 1.64
+++ configure 1998/12/30 22:44:58 1.65
@@ -252,7 +252,7 @@
*--with-layout=* )
;;
* )
- if [ "x$@" = x ]; then
+ if [ ".$*" = . ]; then
set -- '--with-layout=Apache'
else
set -- '--with-layout=Apache' "$@"