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-Tag: 2.0.37~413 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75be359002c13480e4eb211248bac4121102884d;p=thirdparty%2Fapache%2Fhttpd.git 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 be866a5dc7e..79915bb9a3c 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 4bc49357407..3a9692123cc 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");