From c8e22e582db9bd44ef7d108ba854fe8898186226 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 13 May 2002 17:16:55 +0000 Subject: [PATCH] Make apxs look in the correct directory for envvars. It was broken when sbindir != bindir. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- CHANGES | 4 ++++ support/apxs.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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"); -- 2.50.1