diff options
author | Rainer Jung <rjung@apache.org> | 2011-11-11 03:32:19 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2011-11-11 03:32:19 +0100 |
commit | 67b5ac9664df026b6c4b8fe2506d0189bd02c829 (patch) | |
tree | be9a459f269a37225f81df332e53954b8e246813 /Makefile.in | |
parent | disable libapreq stuff until it works generically (diff) | |
download | apache2-67b5ac9664df026b6c4b8fe2506d0189bd02c829.tar.xz apache2-67b5ac9664df026b6c4b8fe2506d0189bd02c829.zip |
Fix installation of conf/extra/proxy-html.conf.
Otherwise httpd does no longer start, because
it is the only extra file required in the main
config at the moment.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1200699 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index ca5e806c7c..e5d75c8ac2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -41,7 +41,7 @@ install-conf: done; \ for j in $(top_srcdir)/docs/conf $(top_builddir)/docs/conf ; do \ cd $$j ; \ - for i in httpd.conf extra/httpd-*.conf; do \ + for i in httpd.conf extra/*.conf; do \ if [ -f $$i ] ; then \ ( \ n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \ |