Skip another module from the VERSION comparison checks
authorSteve Hay <SteveHay@planit.com>
Mon, 22 Sep 2008 08:16:57 +0000 (08:16 +0000)
committerSteve Hay <SteveHay@planit.com>
Mon, 22 Sep 2008 08:16:57 +0000 (08:16 +0000)
p4raw-id: //depot/perl@34391

Porting/cmpVERSION.pl

index de5f942..2855acf 100644 (file)
@@ -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|;