mirror of git://gcc.gnu.org/git/gcc.git
* gcc_build: Save the output from CVS into the logfile as well.
From-SVN: r37136
This commit is contained in:
parent
1641a8238a
commit
d3d6410dbf
|
@ -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>
|
2000-10-25 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* gcc_build: Fix typos.
|
* gcc_build: Fix typos.
|
||||||
|
|
|
@ -118,7 +118,7 @@ update_gcc() {
|
||||||
changedir ${DESTINATION}
|
changedir ${DESTINATION}
|
||||||
|
|
||||||
# Update the tree
|
# Update the tree
|
||||||
./contrib/gcc_update || \
|
(./contrib/gcc_update | tee -a ${LOGFILE}) || \
|
||||||
error "Could not update GCC"
|
error "Could not update GCC"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,12 +139,12 @@ build_gcc() {
|
||||||
# Configure the tree.
|
# Configure the tree.
|
||||||
(eval ${DESTINATION}/configure ${CONFIGURE_OPTIONS} |
|
(eval ${DESTINATION}/configure ${CONFIGURE_OPTIONS} |
|
||||||
tee -a ${LOGFILE}) 2>&1 || \
|
tee -a ${LOGFILE}) 2>&1 || \
|
||||||
error "Could not configure the compiler"
|
error "Could not configure GCC"
|
||||||
|
|
||||||
# Bootstrap the compiler
|
# Bootstrap the compiler
|
||||||
(eval make ${MAKE_OPTIONS} bootstrap |
|
(eval make ${MAKE_OPTIONS} bootstrap |
|
||||||
tee -a ${LOGFILE}) 2>&1 || \
|
tee -a ${LOGFILE}) 2>&1 || \
|
||||||
error "Could not build the compiler"
|
error "Could not build GCC"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Test GCC.
|
# Test GCC.
|
||||||
|
|
Loading…
Reference in New Issue