This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

test_summary: nawk patch


nawk seems to be pickier about quoting rules.

	* test_summary: Quote curly braces in 1999-07-03 change.

Index: test_summary
===================================================================
RCS file: /cvs/egcs/egcs/contrib/test_summary,v
retrieving revision 1.13
diff -u -p -r1.13 test_summary
--- test_summary        1999/07/18 03:45:48     1.13
+++ test_summary        1999/08/09 14:53:48
@@ -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 = " ";


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]