summaryrefslogtreecommitdiff
path: root/Porting/cmpVERSION.pl
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-09-15 17:01:08 +0000
committerSteve Hay <SteveHay@planit.com>2008-09-15 17:01:08 +0000
commitae8d64f5604623dd5fe5ff5a56e530ae81ba071b (patch)
treeeaf9b57a11aa33c20c32a216ead1267ea2ee64b5 /Porting/cmpVERSION.pl
parentbc9c751170bc3ae5aa8c6bbdbe4c1e970b6ad2a6 (diff)
downloadperl-ae8d64f5604623dd5fe5ff5a56e530ae81ba071b.tar.gz
Bump VERSIONs in all non-dual-lived modules that have changed
since 5.8.8, ready for merging into maint-5.8 prior to 5.8.9. (Many (all?) of these should really have been changed prior to 5.10.0, but better late than never.) Also modify cmpVERSION.pl to skip uninstalled test modules whose VERSIONs don't really matter. p4raw-id: //depot/perl@34365
Diffstat (limited to 'Porting/cmpVERSION.pl')
-rw-r--r--Porting/cmpVERSION.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl
index aabe6921be..de5f942d7e 100644
--- a/Porting/cmpVERSION.pl
+++ b/Porting/cmpVERSION.pl
@@ -29,10 +29,12 @@ my %skip;
'./lib/Carp/Heavy.pm',
'./lib/Exporter/Heavy.pm'
} = ();
+my $skip_dirs = qr|^\./t/lib|;
my @wanted;
find(
sub { /\.pm$/ &&
+ $File::Find::dir !~ $skip_dirs &&
! exists $skip{$File::Find::name}
&&
do { my $file2 =