From b98dbfb97e7a110ee2fc78b10524a147112e18a4 Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Sun, 21 Aug 2011 06:21:39 +0200 Subject: [PATCH] buildgcc: Fix typo in check for failed iasl build Change-Id: I3e90b90e807ae775ac66af160a0f8547dcb3597a Signed-off-by: Peter Stuge Reviewed-on: http://review.coreboot.org/164 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/crossgcc/buildgcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index e58b23ed4..b3329b0c5 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -468,7 +468,7 @@ printf "Building IASL ${IASL_VERSION} ... " if [ ! -f .failed ]; then touch .success; fi ) &> $IASL_DIR/compiler/crossgcc-build.log test -r $IASL_DIR/compiler/.failed && printf "${RED}failed${NC}\n" || printf "${green}ok${NC}\n" -test -r $IASL_DIR/compiler.failed && exit 1 +test -r $IASL_DIR/compiler/.failed && exit 1 fi if [ $SAVETEMPS -eq 0 ]; then -- 2.25.1