diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2000-11-22 02:19:07 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-11-22 02:19:07 +0000 |
commit | 19322a5c4146a51ba1966dfa399810312a9ab02e (patch) | |
tree | d127efd12d37dd5455a040e3f57424cb00e0e78c | |
parent | 5388a89aacddc944dc4d554379bb7ea173e209bc (diff) | |
download | gcc-19322a5c4146a51ba1966dfa399810312a9ab02e.zip gcc-19322a5c4146a51ba1966dfa399810312a9ab02e.tar.gz gcc-19322a5c4146a51ba1966dfa399810312a9ab02e.tar.bz2 |
mkcheck.in (explanation): Retain output of all failing compiles.
2000-11-21 Loren J. Rittle <ljrittle@acm.org>
* mkcheck.in (explanation): Retain output of all failing
compiles. Don't add gratuitous space to the log file.
From-SVN: r37640
-rwxr-xr-x | libstdc++-v3/mkcheck.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index 9bacd4f..42902f8 100755 --- a/libstdc++-v3/mkcheck.in +++ b/libstdc++-v3/mkcheck.in @@ -423,7 +423,7 @@ test_file() else # the file did not compile/link. printf "\n" >> $LOG_FILE - `cat compile.out > $LOG_FILE` + `cat compile.out > $LOG_FILE` rm compile.out RESULT="-b" TEXT="0" |