diff options
Diffstat (limited to 't/lib/MakeMaker/Test')
-rw-r--r-- | t/lib/MakeMaker/Test/Utils.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/lib/MakeMaker/Test/Utils.pm b/t/lib/MakeMaker/Test/Utils.pm index e039a6f0e5..b7e01ae78d 100644 --- a/t/lib/MakeMaker/Test/Utils.pm +++ b/t/lib/MakeMaker/Test/Utils.pm @@ -96,9 +96,9 @@ Sets up environment variables so perl can find its libraries. my $old5lib = $ENV{PERL5LIB}; my $had5lib = exists $ENV{PERL5LIB}; sub perl_lib { - # perl-src/lib/ExtUtils/t/Foo - my $lib = $ENV{PERL_CORE} ? qq{../../../lib} - # ExtUtils-MakeMaker/t/Foo + # perl-src/t/ + my $lib = $ENV{PERL_CORE} ? qq{../lib} + # ExtUtils-MakeMaker/t/ : qq{../blib/lib}; $lib = File::Spec->rel2abs($lib); my @libs = ($lib); |