On Fri, 24 Jan 2014, Joe Perches wrote: > diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl > index 9c3986f..ef05ed6 100755 > --- a/scripts/get_maintainer.pl > +++ b/scripts/get_maintainer.pl > @@ -483,6 +483,13 @@ my %deduplicate_address_hash = (); > > my @maintainers = get_maintainers(); > > +if ($email_maintainer && !$interactive && !$email_git_blame && > + (!@maintainers || ($email_list && @maintainers == 1))) { > + warn "$P: No maintainer found, trying harder, addresses may be > stale...\n"; > + $email_git_blame = 1; > + @maintainers = get_maintainers(); > +} > + > if (@maintainers) { > @maintainers = merge_email(@maintainers); > output(@maintainers);
Works well and has good advice on how emails may be stale, thanks Joe! -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/