diff options
author | Robert Lipe <robertlipe@usa.net> | 1999-08-10 03:22:39 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1999-08-10 03:22:39 +0000 |
commit | 83694b618692f96b36199ecc2d5258ea5e67ae7f (patch) | |
tree | ce7db6b9f315a2008bdc65fbb01e161fa376a60b /contrib/test_summary | |
parent | eefc2c6e85ee0a62e659d0bf7d9000bbb8d06620 (diff) | |
download | gcc-83694b618692f96b36199ecc2d5258ea5e67ae7f.tar.gz |
* test_summary: Quote curly braces in 1999-07-03 change.
From-SVN: r28637
Diffstat (limited to 'contrib/test_summary')
-rwxr-xr-x | contrib/test_summary | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_summary b/contrib/test_summary index 913319e1e22..7a621b7b55a 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -93,7 +93,7 @@ BEGIN { $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 } /^Running target / { print ""; print; } /^Target / { if (host != "") next; else host = $3; } -/^Host / && host ~ /^unix{.*}$/ { host = $3 " " substr(host, 5); } +/^Host / && host ~ /^unix\{.*\}$/ { host = $3 " " substr(host, 5); } /^Native / { if (host != "") next; else host = $4; } /^[ ]*=== [^ ]+ tests ===/ { if (lang == "") lang = " "$2" "; else lang = " "; |