2014-07-21  Trevor Saunders  <tsaunders@mozilla.com>

	mklog: Read name and email from git config when available.

From-SVN: r212883
This commit is contained in:
Trevor Saunders 2014-07-21 07:39:40 +00:00 committed by Yury Gribov
parent 5be1f50e6b
commit 863aa163a0
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-07-21 Trevor Saunders <tsaunders@mozilla.com>
mklog: Read name and email from git config when available.
2014-06-28 Richard Biener <rguenther@suse.de>
* gennews: Use gcc-3.0/index.html.

View File

@ -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