diff options
author | foobar <sniper@php.net> | 2003-01-21 06:03:16 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-01-21 06:03:16 +0000 |
commit | 8fdf6abb81e7363f5040dc70d366531907f45496 (patch) | |
tree | 1f8c89a1244ddc5826b2904d3c7e4ac10f85cb86 | |
parent | 2070287f6451d7e03523bfc9c79e6e993b21a66b (diff) | |
download | php-git-8fdf6abb81e7363f5040dc70d366531907f45496.tar.gz |
MFH: Fixed bug: #21698, httpd.conf not modified with "make install"
-rw-r--r-- | sapi/apache2filter/config.m4 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sapi/apache2filter/config.m4 b/sapi/apache2filter/config.m4 index 2eac849aa4..1f7fd93398 100644 --- a/sapi/apache2filter/config.m4 +++ b/sapi/apache2filter/config.m4 @@ -52,13 +52,12 @@ AC_ARG_WITH(apxs2, APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` if test -z `$APXS -q SYSCONFDIR`; then - optarg=-a - else optarg= + else + optarg=-a fi - INSTALL_IT='$(mkinstalldirs) '"$APXS_LIBEXECDIR && \ -$APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' -i ${optarg}-n php4" + INSTALL_IT='$(mkinstalldirs) '"$APXS_LIBEXECDIR && $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' -i ${optarg} -n php4" case $host_alias in *aix*) |