summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/get_maintainer.pl13
1 files changed, 6 insertions, 7 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 0ebdefe74d5b..c1c088ef1420 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -396,7 +396,12 @@ sub read_all_maintainer_files {
396 396
397 if (-d $path) { 397 if (-d $path) {
398 $path .= '/' if ($path !~ m@/$@); 398 $path .= '/' if ($path !~ m@/$@);
399 if ($path eq "${lk_path}MAINTAINERS/") { 399 if ($find_maintainer_files) {
400 find( { wanted => \&find_is_maintainer_file,
401 preprocess => \&find_ignore_git,
402 no_chdir => 1,
403 }, "$path");
404 } else {
400 opendir(DIR, "$path") or die $!; 405 opendir(DIR, "$path") or die $!;
401 my @files = readdir(DIR); 406 my @files = readdir(DIR);
402 closedir(DIR); 407 closedir(DIR);
@@ -404,12 +409,6 @@ sub read_all_maintainer_files {
404 push(@mfiles, "$path$file") if ($file !~ /^\./); 409 push(@mfiles, "$path$file") if ($file !~ /^\./);
405 } 410 }
406 } 411 }
407 if ($find_maintainer_files) {
408 find( { wanted => \&find_is_maintainer_file,
409 preprocess => \&find_ignore_git,
410 no_chdir => 1,
411 }, "$path");
412 }
413 } elsif (-f "$path") { 412 } elsif (-f "$path") {
414 push(@mfiles, "$path"); 413 push(@mfiles, "$path");
415 } else { 414 } else {