From: Justin Erenkrantz Date: Tue, 20 Nov 2001 20:14:58 +0000 (+0000) Subject: apxs should be using sbindir not bindir for the path to the httpd binary. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d52e401499962f8030cb6f87b6b60655308dd18;p=apache apxs should be using sbindir not bindir for the path to the httpd binary. Committed with some minor changes. Submitted by: GOMEZ Henri Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92057 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 20a8b56571..0d53809615 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ Changes with Apache 2.0.29-dev + *) Fix apxs to use sbindir. [Henri Gomez ] + *) Fix a problem with IPv6 vhosts. PR #8118 [Jeff Trawick] *) Optimization for the BNDM string-search function in diff --git a/support/apxs.in b/support/apxs.in index 92a4c4111e..2ecb384179 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -78,8 +78,8 @@ my $CFG_INCLUDEDIR = eval qq("$includedir"); my $CFG_CC = get_vars("CC"); my $libexecdir = get_vars("libexecdir"); my $CFG_LIBEXECDIR = eval qq("$libexecdir"); -my $bindir = get_vars("bindir"); -my $CFG_SBINDIR = eval qq("$bindir"); +my $sbindir = get_vars("sbindir"); +my $CFG_SBINDIR = eval qq("$sbindir"); my %internal_vars = map {$_ => 1} qw(TARGET CC CFLAGS CFLAGS_SHLIB LD_SHLIB LDFLAGS_SHLIB LIBS_SHLIB @@ -218,7 +218,7 @@ if (@opt_S) { ## ## Initial shared object support check ## -my $httpd = get_vars("bindir") . "/" . get_vars("progname"); +my $httpd = get_vars("sbindir") . "/" . get_vars("progname"); $httpd = eval qq("$httpd"); $httpd = eval qq("$httpd");