Remove tee from stage1 call. You can't capture the return code from stage1

(easily) so it gives false 'success' indications.
This commit is contained in:
dwhite 1999-08-29 19:16:29 +00:00
parent c0fcda6e0b
commit 84de4ae03c

View File

@ -92,7 +92,7 @@ main() {
(cd ../${TYPE}; make -f ../build/Makefile.conf )
echo ""
./stage1 2>&1 | tee stage1.out
./stage1
if [ "X$?" != "X0" ] ; then
echo ""
echo "-> ERROR in \"${i}\" script. Aborting the build process."