diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-07-24 08:12:56 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-07-24 08:12:56 +0200 |
commit | 2a6dc37471bea77f0c24fd1fe90c598a270c9968 (patch) | |
tree | 534ffd8a5b0080e486d91631c9002ba47c874894 /make_ext.pl | |
parent | 52a9a866c79d0cc70f5d2074dd80a3d52797f03a (diff) | |
download | perl-2a6dc37471bea77f0c24fd1fe90c598a270c9968.tar.gz |
Move PathTools from cpan/ to dist/
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make_ext.pl b/make_ext.pl index de26d8410a..11f11943fe 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -4,12 +4,12 @@ use warnings; use Config; BEGIN { if ($^O eq 'MSWin32') { - unshift @INC, ('../cpan/Cwd', '../cpan/Cwd/lib'); + unshift @INC, ('../dist/Cwd', '../dist/Cwd/lib'); require File::Spec::Functions; require FindExt; } else { - unshift @INC, 'cpan/Cwd'; + unshift @INC, 'dist/Cwd'; } } use Cwd; @@ -28,7 +28,7 @@ my $is_Unix = !$is_Win32 && !$is_VMS; # This list cannot get any longer without overflowing the length limit for # environment variables on VMS my @toolchain = qw(cpan/AutoLoader/lib - cpan/Cwd cpan/Cwd/lib + dist/Cwd dist/Cwd/lib cpan/ExtUtils-Command/lib dist/ExtUtils-Install/lib cpan/ExtUtils-MakeMaker/lib |