summaryrefslogtreecommitdiff
path: root/Porting/cmpVERSION.pl
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2009-07-03 22:09:59 +0100
committerDavid Mitchell <davem@iabyn.com>2009-07-03 22:09:59 +0100
commit7536d879835346ee8671a43b3f9e0bf5a70ad7c3 (patch)
treeb71b3d86d7cd6a78ddce0e8b728b92e9acb18d47 /Porting/cmpVERSION.pl
parent2fb8ff88df68d4456db591e74fa6d6cb7c777e3c (diff)
downloadperl-7536d879835346ee8671a43b3f9e0bf5a70ad7c3.tar.gz
make cmpVERSION.pl ignore Config.pm
Diffstat (limited to 'Porting/cmpVERSION.pl')
-rw-r--r--Porting/cmpVERSION.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl
index 9205e28894..8f908c8c21 100644
--- a/Porting/cmpVERSION.pl
+++ b/Porting/cmpVERSION.pl
@@ -58,8 +58,9 @@ chdir $ARGV[0] or die "$0: chdir '$ARGV[0]' failed: $!\n";
my %skip;
@skip{
'./lib/Carp/Heavy.pm',
+ './lib/Config.pm', # no version number but contents will vary
'./lib/Exporter/Heavy.pm',
- './win32/FindExt.pm'
+ './win32/FindExt.pm',
} = ();
my $skip_dirs = qr|^\./t/lib|;