Skip to content

Commit 41339ec

Browse files
author
Julien Grall
committed
scripts/add_maintainers.pl: Don't call get_maintainers.pl with -f
The option -f of scripts/get_maintainers.pl will return the maintainers of a given file, *not* the list of maintainers if the file was a patch. The output expected of add_maintainers is the latter, so drop the option -f. Signed-off-by: Julien Grall <[email protected]> Release-acked-by: Juergen Gross <[email protected]> Reviewed-by: Lars Kurth <[email protected]> Acked-by: Ian Jackson <[email protected]>
1 parent 11535cd commit 41339ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/add_maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ ($)
420420
sub getmaintainers ($$$) {
421421
my ($file, $rto, $rcc) = @_;
422422
my $fh;
423-
open($fh, "-|", $get_maintainer, @get_maintainer_args, '-f', $file)
423+
open($fh, "-|", $get_maintainer, @get_maintainer_args, $file)
424424
or die "Failed to open '$get_maintainer'\n";
425425
while(my $line = <$fh>) {
426426
chomp $line;

0 commit comments

Comments
 (0)