summaryrefslogtreecommitdiff
path: root/t/lib/MakeMaker/Test
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-24 12:54:17 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-24 12:54:17 +0000
commitd2c0d57ce3b8d89296988e2bcb8a7b2dd164c766 (patch)
treef104d244ad992507cf96d523b8c78238052a8e94 /t/lib/MakeMaker/Test
parent45bc4d3a962b143ae3b9e7c219b3e795d0c331ce (diff)
downloadperl-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.pm6
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);