summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2013-12-02 09:12:24 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2013-12-02 09:12:24 +0000
commit4ae6f81b38ab10f8a43c09b6efd34ae18e93ce42 (patch)
treed77a76556a7ddfdf07356ea94f8af48f104c213e /make_ext.pl
parent97a07f93e6de2b4ed2a80635043467a4a026c6df (diff)
parentd689efaf4740b2518567ca3587d5aa7e86601bea (diff)
downloadperl-4ae6f81b38ab10f8a43c09b6efd34ae18e93ce42.tar.gz
Merge branch 'dirnames' into blead
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/make_ext.pl b/make_ext.pl
index a5ece308a0..885322f442 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -232,6 +232,11 @@ foreach my $spec (@extspec) {
# Try new style ext/Data-Dumper/ first
my $copy = $spec;
$copy =~ tr!/!-!;
+
+ # List/Util.xs lives in Scalar-List-Utils, Cwd.xs lives in PathTools
+ $copy = 'Scalar-List-Utils' if $copy eq 'List-Util';
+ $copy = 'PathTools' if $copy eq 'Cwd';
+
foreach my $dir (@ext_dirs) {
if (-d "$dir/$copy") {
$ext_pathname = "$dir/$copy";