summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2001-10-05 05:27:56 +0200
committerJustin Erenkrantz <jerenkrantz@apache.org>2001-10-05 05:27:56 +0200
commit3e67afb1b37ae467fe95963dfd77e957ba3ac869 (patch)
tree087962dbf5aff9780199cb5b6cd487f2d26093c8 /Makefile.in
parentget rid of an unused variable (diff)
downloadapache2-3e67afb1b37ae467fe95963dfd77e957ba3ac869.tar.xz
apache2-3e67afb1b37ae467fe95963dfd77e957ba3ac869.zip
Make sure we run the new conf files through sed.
Now, the question is whether it might make more sense to have them as ssl-std.conf, ldap-std.conf, and proxy-std.conf. (I'm also not sure if this is even shell portable or not.) I'll leave that up to OtherBill since he added these files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6c66c8a002..17b53ff84d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -34,7 +34,7 @@ install-conf:
for i in mime.types magic; do \
$(INSTALL_DATA) $$i $(sysconfdir); \
done; \
- for i in *-std*; do \
+ for i in *-std* ldap.conf proxy.conf ssl.conf; do \
sed -e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
< $$i > $(sysconfdir)/$$i; \