summaryrefslogtreecommitdiff
path: root/Porting/corecpan.pl
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2009-03-24 13:17:10 -0500
committerSteve Peters <steve@fisharerojo.org>2009-03-24 13:17:10 -0500
commit2d373db1171ead2bd9f470f98a3c73d12966b508 (patch)
tree3fb2870c1533bfc40272010e09f243e021c48b5e /Porting/corecpan.pl
parent6f63574e655f386b13267d58419ef322ca7e3f5d (diff)
downloadperl-2d373db1171ead2bd9f470f98a3c73d12966b508.tar.gz
For some reason, the core version and the cpan version got reversed.
Diffstat (limited to 'Porting/corecpan.pl')
-rw-r--r--Porting/corecpan.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/corecpan.pl b/Porting/corecpan.pl
index df2a70acc4..eb77fe18b6 100644
--- a/Porting/corecpan.pl
+++ b/Porting/corecpan.pl
@@ -148,7 +148,7 @@ else {
for my $dist (sort keys %results) {
print "Module $dist...\n";
for my $file (sort keys %{$results{$dist}}) {
- my ($vcpan, $vcore) = @{$results{$dist}{$file}}{@labels};
+ my ($vcore, $vcpan) = @{$results{$dist}{$file}}{@labels};
if (our $opt_v or $vcore ne $vcpan) {
print " $file: core=$vcore, cpan=$vcpan\n";
}