From: Justin Erenkrantz Date: Mon, 15 Apr 2002 00:41:25 +0000 (+0000) Subject: Properly substitute sbindir as httpd's location in apachectl. X-Git-Tag: 2.0.36~197 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e4e2245e17e22474c0c0bce65b5dd142945c35e;p=apache Properly substitute sbindir as httpd's location in apachectl. We install $(PROGRAMS) into $(sbindir) not $(bindir), so this is correct. PR: 7840 Submitted by: Andreas Hasenack Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94653 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 0e30f9342c..bc7104e445 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.36 + *) Properly substitute sbindir as httpd's location in apachectl. PR 7840. + [Andreas Hasenack ] + *) Allow Win32 shebang scripts to follow the path (or omit the .exe suffix from the shebang command), and allow ScriptInterpreterSource Registry or RegistryStrict to override shebang lines, as 1.3 did. diff --git a/docs/conf/.cvsignore b/docs/conf/.cvsignore index 145b7faf1a..fe809e1048 100644 --- a/docs/conf/.cvsignore +++ b/docs/conf/.cvsignore @@ -1 +1,2 @@ httpd-std.conf +ssl-std.conf diff --git a/support/apachectl.in b/support/apachectl.in index b8c9ee659d..8b316bc27d 100644 --- a/support/apachectl.in +++ b/support/apachectl.in @@ -29,7 +29,7 @@ ARGV="$@" PIDFILE=@exp_runtimedir@/@progname@.pid # # the path to your httpd binary, including options if necessary -HTTPD='@exp_bindir@/@progname@' +HTTPD='@exp_sbindir@/@progname@' # # pick up any necessary environment variables if test -f @exp_bindir@/envvars; then