You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2002/05/07 15:42:01 UTC

DO NOT REPLY [Bug 8869] New: - apxs: wrong dir for inclusion of envvars

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8869>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8869

apxs: wrong dir for inclusion of envvars

           Summary: apxs: wrong dir for inclusion of envvars
           Product: Apache httpd-2.0
           Version: 2.0.36
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: support
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: sunkan@zappa.cx


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");

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org