diff options
-rw-r--r-- | MANIFEST | 2 | ||||
-rwxr-xr-x | Porting/Maintainers.pl | 5 | ||||
-rw-r--r-- | ext/Text-ParseWords/lib/Text/ParseWords.pm (renamed from ext/Text-ParseWords/ParseWords.pm) | 0 | ||||
-rw-r--r-- | make_ext.pl | 2 |
4 files changed, 7 insertions, 2 deletions
@@ -2060,7 +2060,7 @@ ext/Text-Balanced/t/06_extqlk.t See if Text::Balanced works ext/Text-Balanced/t/07_exttag.t See if Text::Balanced works ext/Text-Balanced/t/08_extvar.t See if Text::Balanced works ext/Text-Balanced/t/09_gentag.t See if Text::Balanced works -ext/Text-ParseWords/ParseWords.pm Perl module to split words on arbitrary delimiter +ext/Text-ParseWords/lib/Text/ParseWords.pm Perl module to split words on arbitrary delimiter ext/Text-ParseWords/t/ParseWords.t See if Text::ParseWords works ext/Text-ParseWords/t/taint.t See if Text::ParseWords works with tainting ext/Text-Soundex/Changes Changelog for Text::Soundex diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 6309e4c8bb..951c9d9133 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1657,6 +1657,11 @@ use File::Glob qw(:case); 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.27.zip', 'FILES' => q[ext/Text-ParseWords], 'EXCLUDED' => [ qw( t/pod.t ) ], + # For the benefit of make_ext.pl, we have to have this accessible: + 'MAP' => { + 'ParseWords.pm' => 'ext/Text-ParseWords/lib/Text/ParseWords.pm', + '' => 'ext/Text-ParseWords/', + }, 'CPAN' => 1, 'UPSTREAM' => undef, }, diff --git a/ext/Text-ParseWords/ParseWords.pm b/ext/Text-ParseWords/lib/Text/ParseWords.pm index f1b5937904..f1b5937904 100644 --- a/ext/Text-ParseWords/ParseWords.pm +++ b/ext/Text-ParseWords/lib/Text/ParseWords.pm 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. |