mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-25 05:44:49 +08:00
test_summary (configflags): Only use the first match.
* test_summary (configflags): Only use the first match. Remove excess space. Use sub instead of gsub where possible. Use `none' if no configure flags were given. From-SVN: r61483
This commit is contained in:
parent
a99820e6c8
commit
d25fc1b572
@ -1,3 +1,9 @@
|
||||
2003-01-19 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* test_summary (configflags): Only use the first match. Remove
|
||||
excess space. Use sub instead of gsub where possible. Use `none'
|
||||
if no configure flags were given.
|
||||
|
||||
2003-01-10 Loren J. Rittle <ljrittle@acm.org>
|
||||
|
||||
* test_summary (configflags): awk portability.
|
||||
|
@ -88,25 +88,28 @@ if $forcemail || $anychange; then :; else mailto=nobody; fi &&
|
||||
cat ./config.status $files |
|
||||
$AWK '
|
||||
BEGIN {
|
||||
lang="";
|
||||
lang=""; configflags = "";
|
||||
address="gcc-testresults@gcc.gnu.org";
|
||||
version="gcc";
|
||||
print "cat <<'"'"'EOF'"'"' |";
|
||||
'${prepend_logs+" system(\"cat $prepend_logs\"); "}'
|
||||
}
|
||||
$0 ~ /^[^ ]*\/configure / || $0 ~ /^# [^ ]*\/configure / {
|
||||
($0 ~ /^[^ ]*\/configure / || $0 ~ /^# [^ ]*\/configure /) &&
|
||||
configflags == "" {
|
||||
configflags = $0 " ";
|
||||
gsub(/^# /, "", configflags);
|
||||
sub(/^# /, "", configflags);
|
||||
srcdir = configflags;
|
||||
gsub(/\/configure .*/, "", srcdir);
|
||||
sub(/\/configure .*/, "", srcdir);
|
||||
printf "LAST_UPDATED: ";
|
||||
system("tail -1 " srcdir "/LAST_UPDATED");
|
||||
print "";
|
||||
|
||||
gsub(/^[^ ]*\/configure /, "configure flags: ", configflags);
|
||||
gsub(/ --with-gcc-version-trigger=[^ ]* /, " ", configflags);
|
||||
gsub(/ --norecursion /, " ", configflags);
|
||||
gsub(/ $/, "", configflags);
|
||||
sub(/^[^ ]*\/configure */, " ", configflags);
|
||||
sub(/ --with-gcc-version-trigger=[^ ]* /, " ", configflags);
|
||||
sub(/ --norecursion /, " ", configflags);
|
||||
sub(/ $/, "", configflags);
|
||||
sub(/^ *$/, " none", configflags);
|
||||
configflags = "configure flags:" configflags;
|
||||
}
|
||||
/^Running target / { print ""; print; }
|
||||
/^Target / { if (host != "") next; else host = $3; }
|
||||
|
Loading…
Reference in New Issue
Block a user