diff options
author | Steve Hay <SteveHay@planit.com> | 2008-09-11 16:50:06 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2008-09-11 16:50:06 +0000 |
commit | 477acd91b77777975279707e892853aef237706b (patch) | |
tree | b4d3a980888c0e737b2527e3ff51c5a8e72080a9 /Porting | |
parent | 31f0e52e4a8d663c64567e10670470e8650e0a20 (diff) | |
download | perl-477acd91b77777975279707e892853aef237706b.tar.gz |
Skip another file in the VERSION comparison program
p4raw-id: //depot/perl@34348
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/cmpVERSION.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl index 052051c3d2..aabe6921be 100644 --- a/Porting/cmpVERSION.pl +++ b/Porting/cmpVERSION.pl @@ -25,7 +25,10 @@ chdir $ARGV[0] or die "$0: chdir '$ARGV[0]' failed: $!\n"; # Files to skip from the check for one reason or another, # usually because they pull in their version from some other file. my %skip; -@skip{'./lib/Exporter/Heavy.pm'} = (); +@skip{ + './lib/Carp/Heavy.pm', + './lib/Exporter/Heavy.pm' +} = (); my @wanted; find( |