From: Alexandre Oliva Date: Wed, 9 Aug 2000 05:12:51 +0000 (+0000) Subject: * test_summary: AWK breaks with filenames containing `='. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e50d29325290fcdeb23a690511ae61c9e89802f1;p=gcc.git * test_summary: AWK breaks with filenames containing `='. From-SVN: r35578 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 0a934906295..c2a711d407c 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2000-08-09 Alexandre Oliva + + * test_summary: AWK breaks with filenames containing `='. + Sun Jul 16 12:04:33 2000 Mark P Mitchell * gcc_build: New script. diff --git a/contrib/test_summary b/contrib/test_summary index ad08c897566..0fcf3ec7d4e 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -82,6 +82,10 @@ for file in $files; do done && $anyfile && if $forcemail || $anychange; then :; else mailto=nobody; fi && +# We use cat instead of listing the files as arguments to AWK because +# GNU awk 3.0.0 would break if any of the filenames contained `=' and +# was preceded by an invalid ``variable'' name. +cat ./config.status $files | $AWK ' BEGIN { lang=""; @@ -122,7 +126,7 @@ END { if (lang != "") { print "Mail -s \"Results for " prefix version lang "testsuite on " host "\" '"${mailto}"' &&"; }} { next; } -' ./config.status $files | sed "s/\([\`\$\\\\]\)/\\\\\\1/g" && +' | sed "s/\([\`\$\\\\]\)/\\\\\\1/g" && if $move; then for file in $files `ls -1 $files | sed s/sum$/log/`; do [ -f $file ] && echo "mv `pwd`/$file `pwd`/$file.sent &&"