stas 01/12/09 21:25:07
Modified: perl-framework/Apache-Test/lib/Apache TestConfigPerl.pm
Log:
- make sure that the dev libs come before blib
Revision Changes Path
1.42 +2 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigPerl.pm
Index: TestConfigPerl.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigPerl.pm,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- TestConfigPerl.pm 2001/11/21 19:24:47 1.41
+++ TestConfigPerl.pm 2001/12/10 05:25:07 1.42
@@ -108,7 +108,8 @@
if (my $inc = $self->{inc}) {
my $include_pl = catfile $self->{vars}->{t_conf}, 'modperl_inc.pl';
my $fh = $self->genfile($include_pl);
- for (@$inc) {
+ # make sure that the dev libs come before blib
+ for (reverse @$inc) {
print $fh "use lib '$_';\n";
}
print $fh "1;\n";