diff options
Diffstat (limited to 'contrib/mklog')
-rwxr-xr-x | contrib/mklog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/mklog b/contrib/mklog index fb489b03a3b..5f5d98e9f4d 100755 --- a/contrib/mklog +++ b/contrib/mklog @@ -38,6 +38,20 @@ $gcc_root = $0; $gcc_root =~ s/[^\\\/]+$/../; chdir $gcc_root; +# if this is a git tree then take name and email from the git configuration +if (-d .git) { + $gitname = `git config user.name`; + chomp($gitname); + if ($gitname) { + $name = $gitname; + } + + $gitaddr = `git config user.email`; + chomp($gitaddr); + if ($gitaddr) { + $addr = $gitaddr; + } +} #----------------------------------------------------------------------------- # Program starts here. You should not need to edit anything below this |