From ec1d1ba057d560ff810890310034e7757e97a1b2 Mon Sep 17 00:00:00 2001 From: Aaron Crane Date: Fri, 30 Dec 2016 15:40:16 +0000 Subject: 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. --- Porting/sync-with-cpan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Porting/sync-with-cpan') 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; } } -- cgit v1.2.1