Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/111
-gerrit commit e2e5c9b848ff94fa02714a9fd4047fe65add2fd0 Author: Patrick Georgi <[email protected]> Date: Sun Jul 17 11:36:10 2011 +0200 buildgcc: Break if parts of the toolchain are missing We test for the presence of a couple of tools and even print an error. But the tool didn't stop there. Change-Id: I40dcf7894408ea7b24d5f68c76df4b7541f469bd Signed-off-by: Patrick Georgi <[email protected]> --- util/crossgcc/buildgcc | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 9211cfd..355b01a 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -88,9 +88,9 @@ searchgnu() exit 1 } -TAR=`searchgnu tar` -PATCH=`searchgnu patch` -MAKE=`searchgnu make` +TAR=`searchgnu tar` || exit $? +PATCH=`searchgnu patch` || exit $? +MAKE=`searchgnu make` || exit $? cleanup() { -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

