mirror of git://gcc.gnu.org/git/gcc.git
test_summary: Only include LAST_UPDATED if it exists.
* test_summary: Only include LAST_UPDATED if it exists. Complete copyright years. From-SVN: r146783
This commit is contained in:
parent
3270032c59
commit
7527cf2106
|
@ -1,3 +1,8 @@
|
||||||
|
2009-04-25 Gerald Pfeifer <gerald@pfeifer.com>
|
||||||
|
|
||||||
|
* test_summary: Only include LAST_UPDATED if it exists.
|
||||||
|
Complete copyright years.
|
||||||
|
|
||||||
2009-04-16 Paolo Bonzini <bonzini@gnu.org>
|
2009-04-16 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
* compare-all-tests: New.
|
* compare-all-tests: New.
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
# (C) 1998, 1999, 2000, 2002 Free Software Foundation
|
# (C) 1998, 1999, 2000, 2002, 2003, 2004, 2007, 2009
|
||||||
|
# Free Software Foundation
|
||||||
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
|
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||||
|
|
||||||
# This script is Free Software, and it can be copied, distributed and
|
# This script is Free Software, and it can be copied, distributed and
|
||||||
|
@ -106,9 +107,11 @@ configflags == "" {
|
||||||
sub(/^s,@TOPLEVEL_CONFIGURE_ARGUMENTS@,/, "", configflags);
|
sub(/^s,@TOPLEVEL_CONFIGURE_ARGUMENTS@,/, "", configflags);
|
||||||
srcdir = configflags;
|
srcdir = configflags;
|
||||||
sub(/\/configure .*/, "", srcdir);
|
sub(/\/configure .*/, "", srcdir);
|
||||||
|
if ( system("test -f " srcdir "/LAST_UPDATED") == 0 ) {
|
||||||
printf "LAST_UPDATED: ";
|
printf "LAST_UPDATED: ";
|
||||||
system("tail -1 " srcdir "/LAST_UPDATED");
|
system("tail -1 " srcdir "/LAST_UPDATED");
|
||||||
print "";
|
print "";
|
||||||
|
}
|
||||||
|
|
||||||
sub(/^[^ ]*\/configure */, " ", configflags);
|
sub(/^[^ ]*\/configure */, " ", configflags);
|
||||||
sub(/,;t t $/, " ", configflags);
|
sub(/,;t t $/, " ", configflags);
|
||||||
|
|
Loading…
Reference in New Issue