diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-12 15:56:51 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-12 15:57:59 +0100 |
commit | 403f501d5b37ebf0340212b1a7f7c01855cd7b95 (patch) | |
tree | 25e4aeac710091a6b8a8c95685db9a7255ed6d7b /make_ext.pl | |
parent | 4527a2238fcb956920c7d18b8aa95a3ff49f0fcb (diff) | |
download | perl-403f501d5b37ebf0340212b1a7f7c01855cd7b95.tar.gz |
Move Cwd from lib to ext.
Obviously, it's going to take a bit more work to piece the PathTools
distribution back together.
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl index 795b7e5918..787254cb6a 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -2,6 +2,7 @@ use strict; use warnings; use Config; +use lib 'ext/Cwd'; use Cwd; # To clarify, this isn't the entire suite of modules considered "toolchain" @@ -11,7 +12,7 @@ use Cwd; # After which, all nonxs modules are in lib, which was always sufficient to # allow miniperl to build everything else. -my @toolchain = qw(ext/constant/lib ext/ExtUtils-Command/lib +my @toolchain = qw(ext/constant/lib ext/Cwd ext/ExtUtils-Command/lib ext/ExtUtils-Install/lib ext/ExtUtils-MakeMaker/lib ext/ExtUtils-Manifest/lib ext/Text-ParseWords/lib ext/File-Path/lib ext/AutoLoader/lib); |