rse 99/01/15 13:47:15
Modified: src/helpers buildinfo.sh
Log:
Be careful:
| :> ./configure
| Configuring for Apache, Version 1.3.5-dev
| + Warning: Configuring Apache with default settings.
| + This is probably not what you really want.
| + Please read the README.configure and INSTALL files
| + first or at least run './configure --help' for
| + a compact summary of available options.
| + using installation path layout: Apache (config.layout)
| [: syntax error
| [: syntax error
| Creating Makefile
So put back some prefix inside the test args here...
Revision Changes Path
1.4 +1 -1 apache-1.3/src/helpers/buildinfo.sh
Index: buildinfo.sh
===================================================================
RCS file: /home/cvs/apache-1.3/src/helpers/buildinfo.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- buildinfo.sh 1999/01/15 20:59:39 1.3
+++ buildinfo.sh 1999/01/15 21:47:14 1.4
@@ -16,7 +16,7 @@
if [ $# -ne 1 -a $# -ne 2 ]; then
error=yes
fi
-if [ $# -eq 2 -a "$1" != "-n" ]; then
+if [ $# -eq 2 -a "x$1" != "x-n" ]; then
error=yes
fi
if [ "$error" = "yes" ]; then