diff options
author | Joe Perches <joe@perches.com> | 2010-10-26 17:22:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-26 19:52:17 -0400 |
commit | fab9ed12fcd0c182a72509382c3da55c527963e3 (patch) | |
tree | ec55db254312f39a20f0fb5e742c08cabcb363e2 /scripts/get_maintainer.pl | |
parent | 6ffd9485f5c9c0b2d2aea9f904dff08e7088010a (diff) |
scripts/get_maintainer.pl: don't search MAINTAINERS for keywords or emails
Keyword matching uses K: patterns from MAINTAINERS, so if looking for the
MAINTAINERS maintainer, don't search MAINTAINERS for pattern matches.
MAINTAINERS also has rather a lot of email addresses and is easily
searched using grep "^M:", so skip it.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/get_maintainer.pl')
-rwxr-xr-x | scripts/get_maintainer.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 65c6acf1bb3b..77f4f2e4cd81 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl | |||
@@ -304,7 +304,7 @@ foreach my $file (@ARGV) { | |||
304 | } | 304 | } |
305 | if ($from_filename) { | 305 | if ($from_filename) { |
306 | push(@files, $file); | 306 | push(@files, $file); |
307 | if (-f $file && ($keywords || $file_emails)) { | 307 | if ($file ne "MAINTAINERS" && -f $file && ($keywords || $file_emails)) { |
308 | open(my $f, '<', $file) | 308 | open(my $f, '<', $file) |
309 | or die "$P: Can't open $file: $!\n"; | 309 | or die "$P: Can't open $file: $!\n"; |
310 | my $text = do { local($/) ; <$f> }; | 310 | my $text = do { local($/) ; <$f> }; |