diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2000-11-22 06:37:14 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-11-22 06:37:14 +0000 |
commit | d37db09b0defcf93f5115afd10db7e95a514f550 (patch) | |
tree | 90eb878eab832056806afe217143146fc65acc83 | |
parent | c385cdf6a8849798c0f76ace6ae7ecbb99c84f62 (diff) | |
download | gcc-d37db09b0defcf93f5115afd10db7e95a514f550.zip gcc-d37db09b0defcf93f5115afd10db7e95a514f550.tar.gz gcc-d37db09b0defcf93f5115afd10db7e95a514f550.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: r37647
-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 42902f8..edc41ff 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" |