projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c0201f
)
cmpVERSION.pl: Correct err msg
author
Father Chrysostomos
<sprout@cpan.org>
Sat, 23 Jun 2012 06:20:09 +0000
(23:20 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Sat, 23 Jun 2012 13:28:56 +0000
(06:28 -0700)
Porting/cmpVERSION.pl
patch
|
blob
|
history
diff --git
a/Porting/cmpVERSION.pl
b/Porting/cmpVERSION.pl
index
ebf57cf
..
8d39d74
100755
(executable)
--- 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