From 40f7a2b9bfda0f0d5c58140aac39caccc3cb85e8 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Fri, 22 Jun 2012 23:20:09 -0700 Subject: [PATCH] cmpVERSION.pl: Correct err msg --- Porting/cmpVERSION.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl index ebf57cf..8d39d74 100755 --- a/Porting/cmpVERSION.pl +++ b/Porting/cmpVERSION.pl @@ -157,7 +157,8 @@ foreach my $pm_file (sort keys %module_diffs) { ++$count; if (!defined $orig_pm_version || $orig_pm_version eq 'undef') { # sigh - print "ok $count - SKIP Can't pass \$VERSION in $pm_file\n" if $tap; + print "ok $count - SKIP Can't parse \$VERSION in $pm_file\n" + if $tap; } elsif (!defined $pm_version || $pm_version eq 'undef') { print "not ok $count - in $pm_file version was $orig_pm_version, now unparsable\n" if $tap; } elsif ($pm_version ne $orig_pm_version) { # good -- 2.7.4