rse 99/11/28 03:17:58
Modified: src CHANGES
. configure
Log:
Made stripping of a trailing slash in directory names in top-level
configure script more robust and this way support also a plain `/' as
the argument without resulting in an empty name.
PR: 5291
Revision Changes Path
1.1448 +5 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1447
retrieving revision 1.1448
diff -u -r1.1447 -r1.1448
--- CHANGES 1999/11/28 11:10:48 1.1447
+++ CHANGES 1999/11/28 11:17:50 1.1448
@@ -1,4 +1,9 @@
Changes with Apache 1.3.10
+
+ *) Made stripping of a trailing slash in directory names in top-level
+ configure script more robust and this way support also a plain `/'
+ as the argument without resulting in an empty name.
+ [Matthias Lohmann <[EMAIL PROTECTED]>] PR#5291
*) Made `tr' usage in top-level configure script more portable
by always using square brackets consistently.
1.108 +1 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /home/cvs/apache-1.3/configure,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- configure 1999/11/28 11:10:52 1.107
+++ configure 1999/11/28 11:17:57 1.108
@@ -1038,7 +1038,7 @@
localstatedir runtimedir logfiledir proxycachedir \
suexec_docroot suexec_logexec; do
eval "val=\"\$$var\"";
- val=`echo $val | sed -e 's:/*$::'`
+ val=`echo $val | sed -e 's:\(.\)/*$:\1:'`
eval "$var=\"$val\""
# expand value
eval "val=\$$var"