mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-26 17:00:58 +08:00
* test_summary: AWK breaks with filenames containing `='.
From-SVN: r35578
This commit is contained in:
parent
1fcbbcd34f
commit
e50d293252
@ -1,3 +1,7 @@
|
||||
2000-08-09 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* test_summary: AWK breaks with filenames containing `='.
|
||||
|
||||
Sun Jul 16 12:04:33 2000 Mark P Mitchell <mark@codesourcery.com>
|
||||
|
||||
* gcc_build: New script.
|
||||
|
@ -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 &&"
|
||||
|
Loading…
x
Reference in New Issue
Block a user