Bug 8869

Summary: apxs: wrong dir for inclusion of envvars
Product: Apache httpd-2 Reporter: Andreas Sundstr <sunkan>
Component: supportAssignee: Apache HTTPD Bugs Mailing List <bugs>
Status: CLOSED FIXED    
Severity: minor    
Priority: P3    
Version: 2.0.36   
Target Milestone: ---   
Hardware: Other   
OS: other   

Description Andreas Sundstr 2002-05-07 13:42:00 UTC
make install places the envvars and envvars-std files in $(sbindir) but apxs
tries to find it in $(bindir)

--- httpd-2.0.36/support/apxs.in~       Mon Apr 29 20:09:02 2002
+++ httpd-2.0.36/support/apxs.in        Tue May  7 15:33:42 2002
@@ -223,7 +223,7 @@
 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");
Comment 1 Jeff Trawick 2002-05-13 17:18:10 UTC
Your change will be in Apache 2.0.37.

Thanks for your report, and thanks for using Apache!