diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-10 11:06:03 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-10 11:06:03 +0100 |
commit | 66c85ba8d72ac70beb51ca6fcf48ade6d6b89439 (patch) | |
tree | 84c69283605c049f34eeab67f83d7ab52b95393b /make_ext.pl | |
parent | f1d72bc4f93301613aaebd1e84ca89818fe21f42 (diff) | |
download | perl-66c85ba8d72ac70beb51ca6fcf48ade6d6b89439.tar.gz |
Map ParseWords.pm to .../lib/Text/ParseWords.pm so that it can be used.
make_ext.pl needs to add a directory containing Text/ParseWords.pm into
$ENV{PERL5LIB} so that ExtUtils::MakeMaker can require it on Win32.
Hopefully the upstream CPAN distribution will be re-shuffled to match.
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl index e475c4e51d..8f73a429f7 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -12,7 +12,7 @@ use Cwd; # allow miniperl to build everything else. my @toolchain = qw(ext/constant/lib ext/ExtUtils-Command/lib - ext/Text-ParseWords); + ext/Text-ParseWords/lib); # This script acts as a simple interface for building extensions. |