summaryrefslogtreecommitdiff
path: root/Porting/sync-with-cpan
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2016-12-30 15:40:16 +0000
committerAaron Crane <arc@cpan.org>2016-12-30 18:45:35 +0000
commitec1d1ba057d560ff810890310034e7757e97a1b2 (patch)
tree759aa9b223ad5968359dc0c819dca3c5652d0166 /Porting/sync-with-cpan
parent469f794845017634fade642803387556b4f226d4 (diff)
downloadperl-ec1d1ba057d560ff810890310034e7757e97a1b2.tar.gz
Porting/sync-with-cpan: fix bug in updating Maintainers.pl
We must look for $module, not $cpan_mod, because the former is specifically the key in %Modules under which we found the details for this dist.
Diffstat (limited to 'Porting/sync-with-cpan')
-rwxr-xr-xPorting/sync-with-cpan2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/sync-with-cpan b/Porting/sync-with-cpan
index 498862d589..5927300cd5 100755
--- a/Porting/sync-with-cpan
+++ b/Porting/sync-with-cpan
@@ -607,7 +607,7 @@ while (<$Maintainers_pl>) {
}
}
- if (/\Q$cpan_mod/) {
+ if (/\Q$module/) {
$in_mod_section = 1;
}
}