[coreboot] New patch to review: a6efd27 buildgcc: Fix typo in check for failed iasl build

Peter Stuge (peter@stuge.se) gerrit at coreboot.org
Sun Aug 21 07:10:28 CEST 2011


Peter Stuge (peter at stuge.se) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/164

-gerrit

commit a6efd27ef8a4d0c1c2f89ad1ae07322348546eec
Author: Peter Stuge <peter at stuge.se>
Date:   Sun Aug 21 06:21:39 2011 +0200

    buildgcc: Fix typo in check for failed iasl build
    
    Change-Id: I3e90b90e807ae775ac66af160a0f8547dcb3597a
    Signed-off-by: Peter Stuge <peter at stuge.se>
---
 util/crossgcc/buildgcc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index e58b23e..b3329b0 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




More information about the coreboot mailing list