]> git.ipfire.org Git - thirdparty/u-boot.git/blobdiff - scripts/get_maintainer.pl
Merge branch '2024-03-02-assorted-updates' into next
[thirdparty/u-boot.git] / scripts / get_maintainer.pl
index 81116e215e516f63d92a67a80f4b2c1975913d5f..71cf18c2b3ee9d6f4f096c108b9c8db8f0621e97 100755 (executable)
@@ -80,7 +80,7 @@ my %commit_author_hash;
 my %commit_signer_hash;
 
 my @penguin_chief = ();
-push(@penguin_chief, "Tom Rini:trini\@konsulko.com");
+push(@penguin_chief, "Tom RINI:trini\@konsulko.com");
 
 my @penguin_chief_names = ();
 foreach my $chief (@penguin_chief) {
@@ -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");