From: Steve Hay <SteveHay@planit.com>
Date: Thu, 11 Sep 2008 16:50:06 +0000 (+0000)
Subject: Skip another file in the VERSION comparison program
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=477acd91b77777975279707e892853aef237706b;p=p5sagit%2Fp5-mst-13.2.git

Skip another file in the VERSION comparison program

p4raw-id: //depot/perl@34348
---

diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl
index 052051c..aabe692 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(