From: Steve Hay Date: Mon, 22 Sep 2008 08:16:57 +0000 (+0000) Subject: Skip another module from the VERSION comparison checks X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8adca19127aa368387d47a481fcc3fcb911d4017;p=p5sagit%2Fp5-mst-13.2.git Skip another module from the VERSION comparison checks p4raw-id: //depot/perl@34391 --- diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl index de5f942..2855acf 100644 --- a/Porting/cmpVERSION.pl +++ b/Porting/cmpVERSION.pl @@ -27,7 +27,8 @@ chdir $ARGV[0] or die "$0: chdir '$ARGV[0]' failed: $!\n"; my %skip; @skip{ './lib/Carp/Heavy.pm', - './lib/Exporter/Heavy.pm' + './lib/Exporter/Heavy.pm', + './win32/FindExt.pm' } = (); my $skip_dirs = qr|^\./t/lib|;