You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2003/05/20 08:02:32 UTC

cvs commit: modperl-2.0/lib/ModPerl Config.pm

stas        2003/05/19 23:02:32

  Modified:    lib/Apache Build.pm
               lib/ModPerl Config.pm
  Log:
  remove:
  	use lib qw(Apache-Test/lib);
  as it pollutes @INC, without giving users much control, @_ should be set
  in the scripts that uses those modules
  
  Revision  Changes    Path
  1.124     +0 -2      modperl-2.0/lib/Apache/Build.pm
  
  Index: Build.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
  retrieving revision 1.123
  retrieving revision 1.124
  diff -u -r1.123 -r1.124
  --- Build.pm	15 May 2003 03:29:09 -0000	1.123
  +++ Build.pm	20 May 2003 06:02:32 -0000	1.124
  @@ -4,8 +4,6 @@
   use strict;
   use warnings;
   
  -use lib qw(Apache-Test/lib);
  -
   use Config;
   use Cwd ();
   use File::Spec::Functions qw(catfile);
  
  
  
  1.8       +0 -1      modperl-2.0/lib/ModPerl/Config.pm
  
  Index: Config.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/Config.pm,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Config.pm	11 Dec 2001 06:27:47 -0000	1.7
  +++ Config.pm	20 May 2003 06:02:32 -0000	1.8
  @@ -1,7 +1,6 @@
   package ModPerl::Config;
   
   use strict;
  -use lib qw(Apache-Test/lib);
   
   use Apache::Build ();
   use Apache::TestConfig ();