diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-28 12:58:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-30 15:32:49 -0400 |
commit | 9f339140047041d867b9cccfb67afcb87eb848bf (patch) | |
tree | b53b786120aef9276c282d1673f768aa82dcae1f /scripts | |
parent | 18370f14975ca4abb15cb9700f57d82587e620b4 (diff) | |
download | u-boot-9f339140047041d867b9cccfb67afcb87eb848bf.tar.gz |
get_maintainer.pl: update from Linux kernel v6.5
Update U-Boot's version of scripts/get_maintainer.pl to sync it up with
the latest changes to the Linux kernel's version of the same script.
The last sync was with Linux kernel version v5.13-rc6. The commits to
the kernel's get_maintainer.pl since then (starting with the most
recent) are:
11fb48961e52 get_maintainer: Honor mailmap for in file emails
26d98e9f78da get_maintainer: don't remind about no git repo when --nogit is used
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get_maintainer.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 81116e215e5..6c58578e988 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -981,6 +981,7 @@ sub get_maintainers { } foreach my $email (@file_emails) { + $email = mailmap_email($email); my ($name, $address) = parse_email($email); my $tmp_email = format_email($name, $address, $email_usename); @@ -1718,7 +1719,7 @@ sub vcs_exists { %VCS_cmds = %VCS_cmds_hg; return 2 if eval $VCS_cmds{"available"}; %VCS_cmds = (); - if (!$printed_novcs) { + if (!$printed_novcs && $email_git) { warn("$P: No supported VCS found. Add --nogit to options?\n"); warn("Using a git repository produces better results.\n"); warn("Try Linus Torvalds' latest git repository using:\n"); |