summaryrefslogtreecommitdiff
path: root/win32/FindExt.pm
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2013-10-24 18:09:14 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2013-10-24 18:09:14 +0100
commitcb8c84586a7e77e1b9100e6d88a6a9d18041ae96 (patch)
treef6a0ebbe9f044f2eb27b0dc48936103198ca8b60 /win32/FindExt.pm
parent41e70615a0bf7f35048f8163e68f1b9936509b9a (diff)
downloadperl-cb8c84586a7e77e1b9100e6d88a6a9d18041ae96.tar.gz
Move Cwd and List-Util to folders named as per their CPAN distributions
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r--win32/FindExt.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm
index f65e578dff..6e62838254 100644
--- a/win32/FindExt.pm
+++ b/win32/FindExt.pm
@@ -115,6 +115,10 @@ sub scan_ext
$this_ext =~ s!-!/!g;
$leaf =~ s/.*-//;
+ # List/Util.xs lives in Scalar-List-Utils, Cwd.xs lives in PathTools
+ $this_ext = 'List/Util' if $this_ext eq 'Scalar/List/Utils';
+ $this_ext = 'Cwd' if $this_ext eq 'PathTools';
+
# Temporary hack to cope with smokers that are not clearing directories:
next if $ext{$this_ext};