rse 98/12/16 02:57:46
Modified: . configure
Log:
Fix a few recently introduced bugs in APACI. Especially the option reversing
breaks the --activate-module facility and other similar additive option based
things.
Revision Changes Path
1.62 +4 -3 apache-1.3/configure
Index: configure
===================================================================
RCS file: /home/cvs/apache-1.3/configure,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- configure 1998/12/14 01:03:31 1.61
+++ configure 1998/12/16 10:57:45 1.62
@@ -344,7 +344,7 @@
exit 0
;;
--with-layout=*|--compat)
- if [ ".$apc_option" = ".--compat" ]; then
+ if [ ".$apc_option" = ".--compat" ]; then
apc_optarg="Apache"
fi
case $apc_optarg in
@@ -378,11 +378,12 @@
fi
with_layout=1
;;
- *)
- args="$apc_option $args"
+ *)
+ args="$args $apc_option"
;;
esac
done
+IFS="$OIFS1"
if [ ".$with_layout" = .0 ]; then
echo "configure:Error: Please select an installation path layout with"