rse 98/08/25 03:51:51
Modified: src CHANGES
. configure
Log:
Use the construct ``"$@"'' instead of ``$*'' in the generated
config.status script to be immune against arguments with whitespaces.
Submitted by: Yves Arrouye <[EMAIL PROTECTED]>
Reviewed by: Ralf S. Engelschall
PR: 2866
Revision Changes Path
1.1036 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1035
retrieving revision 1.1036
diff -u -r1.1035 -r1.1036
--- CHANGES 1998/08/25 09:52:37 1.1035
+++ CHANGES 1998/08/25 10:51:49 1.1036
@@ -1,5 +1,9 @@
Changes with Apache 1.3.2
+ *) Use the construct ``"$@"'' instead of ``$*'' in the generated
+ config.status script to be immune against arguments with whitespaces.
+ [Yves Arrouye <[EMAIL PROTECTED]>] PR#2866
+
*) Replace the inlined information grabbing stuff for the configuration
adjustment feature (no --without-confadjust) with calls to a new helper
script `buildinfo.sh' which is both more flexible and already proofed to
1.45 +1 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/configure,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- configure 1998/08/25 09:52:39 1.44
+++ configure 1998/08/25 10:51:51 1.45
@@ -300,7 +300,7 @@
-e 's:$:" \\:' >>$configstatus
done
fi
- echo '$*' >>$configstatus
+ echo '"$@"' >>$configstatus
echo '' >>$configstatus
chmod a+x $configstatus
fi