You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/05/13 19:16:56 UTC

cvs commit: httpd-2.0/support apxs.in

trawick     02/05/13 10:16:55

  Modified:    .        CHANGES
               support  apxs.in
  Log:
  Make apxs look in the correct directory for envvars.  It was
  broken when sbindir != bindir.
  
  PR:           8869
  Submitted by: Andreas Sundstr�m <su...@zappa.cx>
  Reviewed by:  Jeff Trawick
  
  (This fix has been posted by others too.)
  
  Revision  Changes    Path
  1.771     +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.770
  retrieving revision 1.771
  diff -u -r1.770 -r1.771
  --- CHANGES	13 May 2002 07:11:00 -0000	1.770
  +++ CHANGES	13 May 2002 17:16:55 -0000	1.771
  @@ -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 <su...@zappa.cx>]
  +  
     *) Fix mod_deflate corruption when using multiple buckets.  PR 9014.
        [Asada Kazuhisa <ka...@asada.sytes.net>]
   
  
  
  
  1.38      +1 -1      httpd-2.0/support/apxs.in
  
  Index: apxs.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/support/apxs.in,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- apxs.in	29 Apr 2002 18:09:02 -0000	1.37
  +++ apxs.in	13 May 2002 17:16:55 -0000	1.38
  @@ -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");