diff options
author | Guenter Knauf <fuankg@apache.org> | 2007-12-21 21:59:03 +0100 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2007-12-21 21:59:03 +0100 |
commit | 4e0d66f3fb29dfd9efccd0e1ad09fb4a448e3d38 (patch) | |
tree | 08546f6507e281b71e9e92e3a03f016dc0d9e070 /Makefile.in | |
parent | Let the installer lead on the origin sourceroot conf path (diff) | |
download | apache2-4e0d66f3fb29dfd9efccd0e1ad09fb4a448e3d38.tar.xz apache2-4e0d66f3fb29dfd9efccd0e1ad09fb4a448e3d38.zip |
Enabled to configure the https port as we do with http port too.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@606316 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index e68c381506..3f09eebfdd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -47,12 +47,14 @@ install-conf: if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \ sed -e 's#@@ServerRoot@@#$(prefix)#g' \ -e 's#@@Port@@#$(PORT)#g' \ + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ -e '/@@LoadModule@@/d' \ < $$i; \ else \ sed -n -e '/@@LoadModule@@/q' \ -e 's#@@ServerRoot@@#$(prefix)#g' \ -e 's#@@Port@@#$(PORT)#g' \ + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ -e 'p' \ < $$i; \ for j in $(DSO_MODULES) "^EOL^"; do \ @@ -64,6 +66,7 @@ install-conf: -e '/@@LoadModule@@/d' \ -e 's#@@ServerRoot@@#$(prefix)#g' \ -e 's#@@Port@@#$(PORT)#g' \ + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ < $$i; \ fi \ ) > $(DESTDIR)$(sysconfdir)/original/$$i; \ |