diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2007-12-21 12:09:10 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2007-12-21 12:09:10 +0100 |
commit | c2e5f2942502457228f4301487d85e774f074d42 (patch) | |
tree | 2721dbc959f3593bfc173378b80321fd30475194 /build/installwinconf.awk | |
parent | Modifications for 1) httpd.conf.in generic conf file, and (diff) | |
download | apache2-c2e5f2942502457228f4301487d85e774f074d42.tar.xz apache2-c2e5f2942502457228f4301487d85e774f074d42.zip |
Add rel_sysconfdir interpolation, this rounds out all
of the necessary @X@ patterns.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@606157 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/installwinconf.awk')
-rw-r--r-- | build/installwinconf.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/installwinconf.awk b/build/installwinconf.awk index 6ade49c8e0..ad6affd828 100644 --- a/build/installwinconf.awk +++ b/build/installwinconf.awk @@ -174,6 +174,7 @@ BEGIN { gsub( /_log"/, ".log\"" ) } gsub( /@rel_runtimedir@/, "logs" ); + gsub( /@rel_sysconfdir@/, "conf" ); gsub( /\/home\/\*\/public_html/, "\"C:/Documents and Settings/*/My Documents/My Website\"" ); gsub( /UserDir public_html/, "UserDir \"My Documents/My Website\"" ); gsub( /@@ServerName@@|www.example.com/, servername ); |