diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2012-03-31 10:54:51 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2012-03-31 10:54:51 +0200 |
commit | 3364991097dafedb70f6e6a832cbc6fb01991dc7 (patch) | |
tree | e6d4c6a7e39fc77edfa9bc078c69182d4cbb6eec /Porting/corecpan.pl | |
parent | 39e518fd0507d74dbc0c77604a10ed01af505ee5 (diff) | |
download | perl-3364991097dafedb70f6e6a832cbc6fb01991dc7.tar.gz |
Show maintainer name in corecpan output
Diffstat (limited to 'Porting/corecpan.pl')
-rwxr-xr-x | Porting/corecpan.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/corecpan.pl b/Porting/corecpan.pl index 41778c1573..3a38d112c6 100755 --- a/Porting/corecpan.pl +++ b/Porting/corecpan.pl @@ -159,7 +159,7 @@ else { for my $file (sort keys %{$results{$dist}}) { my ($vcore, $vcpan) = @{$results{$dist}{$file}}{@labels}; if (our $opt_v or $vcore ne $vcpan) { - print "\n$dist:\n" unless ($distname_printed++); + print "\n$dist ($Modules{$dist}{MAINTAINER}):\n" unless ($distname_printed++); print "\t$file: core=$vcore, cpan=$vcpan\n"; } } |