diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-30 13:19:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-30 13:19:03 +0000 |
commit | 924a5df912d426c87116919236e37a89c996fd37 (patch) | |
tree | 3e294b884242481989ff425012f0c19cd6e51a4e /Porting | |
parent | ac499c5c3b8a1a75bcad9352e6db98e93806dbf6 (diff) | |
download | perl-924a5df912d426c87116919236e37a89c996fd37.tar.gz |
Match also on full name and email (though the email is
now less interesting than it used to be).
p4raw-id: //depot/perl@20347
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Maintainers | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/Maintainers b/Porting/Maintainers index a9a92884d4..9c878031af 100644 --- a/Porting/Maintainers +++ b/Porting/Maintainers @@ -88,7 +88,7 @@ sub get_maintainer_modules { if ($Maintainer) { for my $m (sort keys %Maintainers) { - if ($m =~ /$Maintainer/io) { + if ($m =~ /$Maintainer/io || $Maintainers{$m} =~ /$Maintainer/io) { my @modules = get_maintainer_modules($m); if ($Module) { @modules = grep { /$Module/io } @modules; |