Skip to content
Snippets Groups Projects
Commit 692c4bf5 authored by Alexandre Oliva's avatar Alexandre Oliva Committed by Alexandre Oliva
Browse files

test_summary (version): remove carriage return that gawk inserts in the...

test_summary (version): remove carriage return that gawk inserts in the version string for some reason

	* test_summary (version): remove carriage return that gawk inserts
	in the version string for some reason

From-SVN: r24552
parent 1bf27b5b
No related branches found
No related tags found
No related merge requests found
1999-01-07 Alexandre Oliva <oliva@dcc.unicamp.br>
* test_summary (version): remove carriage return that gawk inserts
in the version string for some reason
1998-11-30 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* egcs_update: Only touch files that already exist.
......
......@@ -107,7 +107,7 @@ $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 }
}
/--disable-haifa/ { prefix="haifa-disabled "; }
/--enable-haifa/ { prefix="haifa-enabled "; }
$2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); $0 = save; }
$2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); gsub(/\r$/, "", version); $0 = save; }
/\===.*Summary/ { print ""; print; blanks=1; }
/tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; }
/^(XPASS|FAIL|# of )/ { print; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment