diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-24 12:54:17 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-24 12:54:17 +0000 |
commit | d2c0d57ce3b8d89296988e2bcb8a7b2dd164c766 (patch) | |
tree | f104d244ad992507cf96d523b8c78238052a8e94 /t/lib/MakeMaker/Test | |
parent | 45bc4d3a962b143ae3b9e7c219b3e795d0c331ce (diff) | |
download | perl-d2c0d57ce3b8d89296988e2bcb8a7b2dd164c766.tar.gz |
Forgotten from #16125.
p4raw-id: //depot/perl@16126
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); |