diff options
author | Sander Striker <striker@apache.org> | 2002-04-04 11:15:44 +0200 |
---|---|---|
committer | Sander Striker <striker@apache.org> | 2002-04-04 11:15:44 +0200 |
commit | d14107e925d5dbb11c4ab7d008cece271e574955 (patch) | |
tree | 6064e28bb6e76458a04a5407d4e5dac7676f5ea0 /support/apachectl.in | |
parent | Fix a potential size mismatch (apr_off_t might be 64bits on some platforms). (diff) | |
download | apache2-d14107e925d5dbb11c4ab7d008cece271e574955.tar.xz apache2-d14107e925d5dbb11c4ab7d008cece271e574955.zip |
Remove hardcoded paths from MPMs and move them to a more central
place. Expand paths in httpd-std.conf in a similar fashion as we do
in our headers.
Submitted by: Pier Fumagalli <pier@betaversion.org>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94431 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/apachectl.in')
-rw-r--r-- | support/apachectl.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/support/apachectl.in b/support/apachectl.in index e4496a1ac3..b8c9ee659d 100644 --- a/support/apachectl.in +++ b/support/apachectl.in @@ -26,14 +26,14 @@ ARGV="$@" # -------------------- -------------------- # # the path to your PID file -PIDFILE=@prefix@/logs/@progname@.pid +PIDFILE=@exp_runtimedir@/@progname@.pid # # the path to your httpd binary, including options if necessary -HTTPD='@prefix@/bin/@progname@' +HTTPD='@exp_bindir@/@progname@' # # pick up any necessary environment variables -if test -f @prefix@/bin/envvars; then - . @prefix@/bin/envvars +if test -f @exp_bindir@/envvars; then + . @exp_bindir@/envvars fi # # a command that outputs a formatted text version of the HTML at the |