diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-29 23:04:48 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-29 23:04:48 +0000 |
commit | 7a0994a1105ad8042cb53dcf7d51f62fc16e975a (patch) | |
tree | 03c581985acb4953d323611cd2be107d57937f92 /contrib | |
parent | 3f1753f5eb69fb789df1c4b298e651ab41cd3248 (diff) | |
download | gcc-7a0994a1105ad8042cb53dcf7d51f62fc16e975a.tar.gz |
* gcc_build: Save the output from CVS into the logfile as well.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37136 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/gcc_build | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 09426a831d7..2ebd692c4ce 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2000-10-29 Mark Mitchell <mark@codesourcery.com> + + * gcc_build: Save the output from CVS into the logfile as well. + 2000-10-25 Mark Mitchell <mark@codesourcery.com> * gcc_build: Fix typos. diff --git a/contrib/gcc_build b/contrib/gcc_build index 9cae43d0f07..0a3dd7bfd5e 100755 --- a/contrib/gcc_build +++ b/contrib/gcc_build @@ -118,7 +118,7 @@ update_gcc() { changedir ${DESTINATION} # Update the tree - ./contrib/gcc_update || \ + (./contrib/gcc_update | tee -a ${LOGFILE}) || \ error "Could not update GCC" } @@ -139,12 +139,12 @@ build_gcc() { # Configure the tree. (eval ${DESTINATION}/configure ${CONFIGURE_OPTIONS} | tee -a ${LOGFILE}) 2>&1 || \ - error "Could not configure the compiler" + error "Could not configure GCC" # Bootstrap the compiler (eval make ${MAKE_OPTIONS} bootstrap | tee -a ${LOGFILE}) 2>&1 || \ - error "Could not build the compiler" + error "Could not build GCC" } # Test GCC. |