mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-13 13:25:14 +08:00
The new mklog script prints three spaces after the date part, which is wrong.
The new mklog script prints three spaces after the date part, which is wrong. Thus fixed by adjusting the split pattern. Tested manually. 2012-05-31 Marek Polacek <polacek@redhat.com> * mklog: Prevent printing three spaces after the date. From-SVN: r188265
This commit is contained in:
parent
ce6d2586b5
commit
9adf6490fc
@ -1,3 +1,7 @@
|
||||
2012-05-31 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
* mklog: Prevent printing three spaces after the date.
|
||||
|
||||
2012-06-04 Diego Novillo <dnovillo@google.com>
|
||||
|
||||
* testsuite-management/validate_failures.py (GetResults):
|
||||
|
@ -29,7 +29,7 @@
|
||||
# Change these settings to reflect your profile.
|
||||
$username = $ENV{'USER'};
|
||||
$name = `finger $username | grep -o 'Name: .*'`;
|
||||
@n = split(/:/, $name);
|
||||
@n = split(/: /, $name);
|
||||
$name = @n[1]; chop($name);
|
||||
$addr = $username . "\@my.domain.org";
|
||||
$date = `date +%Y-%m-%d`; chop ($date);
|
||||
|
Loading…
Reference in New Issue
Block a user