Bug 8869 - apxs: wrong dir for inclusion of envvars
Summary: apxs: wrong dir for inclusion of envvars
Status: CLOSED FIXED
Alias: None
Product: Apache httpd-2
Classification: Unclassified
Component: support (show other bugs)
Version: 2.0.36
Hardware: Other other
: P3 minor (vote)
Target Milestone: ---
Assignee: Apache HTTPD Bugs Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-07 13:42 UTC by Andreas Sundstr
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!