From: Jeff Trawick Date: Mon, 13 May 2002 17:16:55 +0000 (+0000) Subject: Make apxs look in the correct directory for envvars. It was X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8e22e582db9bd44ef7d108ba854fe8898186226;p=apache Make apxs look in the correct directory for envvars. It was broken when sbindir != bindir. PR: 8869 Submitted by: Andreas Sundstr�m Reviewed by: Jeff Trawick (This fix has been posted by others too.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95065 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index be866a5dc7..79915bb9a3 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.37 + *) Make apxs look in the correct directory for envvars. It was + broken when sbindir != bindir. PR 8869 + [Andreas Sundström ] + *) Fix mod_deflate corruption when using multiple buckets. PR 9014. [Asada Kazuhisa ] diff --git a/support/apxs.in b/support/apxs.in index 4bc4935740..3a9692123c 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -223,7 +223,7 @@ if (@opt_S) { my $httpd = get_vars("sbindir") . "/" . get_vars("progname"); $httpd = eval qq("$httpd"); $httpd = eval qq("$httpd"); -my $envvars = get_vars("bindir") . "/envvars"; +my $envvars = get_vars("sbindir") . "/envvars"; $envvars = eval qq("$envvars"); $envvars = eval qq("$envvars");