summaryrefslogtreecommitdiff
path: root/Porting/cmpVERSION.pl
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-09-17 08:24:56 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2014-09-17 08:24:56 +0100
commit4421e1e92869cabe47c9e70078cf52e18079a7c7 (patch)
treebd2686e5c3d8d85128e64b19cd35fff376848bfd /Porting/cmpVERSION.pl
parent53e19030564baaa9a7feb874c34dc5c86d50e047 (diff)
downloadperl-4421e1e92869cabe47c9e70078cf52e18079a7c7.tar.gz
Teach Porting/cmpVERSION.pl about Scalar-List-Utils (broken by cb8c84586a)
Diffstat (limited to 'Porting/cmpVERSION.pl')
-rwxr-xr-xPorting/cmpVERSION.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl
index c92fe78b34..0123f2907c 100755
--- a/Porting/cmpVERSION.pl
+++ b/Porting/cmpVERSION.pl
@@ -120,6 +120,7 @@ sub pm_file_from_xs {
# look for a .pm in lib/ based on that:
my ($path) = shift =~ m!^(.*)/!;
my ($last) = $path =~ m!([^/]+)\z!;
+ $last = 'List-Util' if $last eq 'Scalar-List-Utils';
$last =~ tr !-!/!;
return "$path/lib/$last";
}) {