1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

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:
Doug White 1999-08-29 19:16:29 +00:00
parent a17382473e
commit 0a2478e155
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50590

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."