diff options
author | Steve Hay <SteveHay@planit.com> | 2008-09-22 08:16:57 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2008-09-22 08:16:57 +0000 |
commit | 8adca19127aa368387d47a481fcc3fcb911d4017 (patch) | |
tree | d0fdb276e339d07a51511533f1fbc87ff4edebd1 /Porting/cmpVERSION.pl | |
parent | 309c1fb6a6ad20568b862cba364115277bd0ef1e (diff) | |
download | perl-8adca19127aa368387d47a481fcc3fcb911d4017.tar.gz |
Skip another module from the VERSION comparison checks
p4raw-id: //depot/perl@34391
Diffstat (limited to 'Porting/cmpVERSION.pl')
-rw-r--r-- | Porting/cmpVERSION.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl index de5f942d7e..2855acf8cd 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|; |