summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-10 10:10:24 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-10 10:10:24 +0100
commitf1d72bc4f93301613aaebd1e84ca89818fe21f42 (patch)
treee193985f1eb28737863dbb99de2bccdb889df8ab /make_ext.pl
parenta2c9e1b1792753d816ee8e4c6eeb0b25dce4c32f (diff)
downloadperl-f1d72bc4f93301613aaebd1e84ca89818fe21f42.tar.gz
Redo moving Text::ParseWords from lib to ext
This reverts commit 3fcda861606b23c12f4356df2a20543dc1c1779b, but adds ext/Text-ParseWords to the list of directories that make_ext.pl should put into $ENV{PERL5LIB}. Conflicts: MANIFEST
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index a9988ac672..e475c4e51d 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -11,7 +11,8 @@ 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/ExtUtils-Command/lib
+ ext/Text-ParseWords);
# This script acts as a simple interface for building extensions.