diff options
author | Peter Stuge <peter@stuge.se> | 2011-08-21 06:21:39 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-08-21 07:39:57 +0200 |
commit | b98dbfb97e7a110ee2fc78b10524a147112e18a4 (patch) | |
tree | c3cc2c47dab05b214b949b1d9c2c28ca23b5d6b9 /util | |
parent | 6901b561eb39904c0d44c59e71c58952b690d8d8 (diff) |
buildgcc: Fix typo in check for failed iasl build
Change-Id: I3e90b90e807ae775ac66af160a0f8547dcb3597a
Signed-off-by: Peter Stuge <peter@stuge.se>
Reviewed-on: http://review.coreboot.org/164
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'util')
-rwxr-xr-x | util/crossgcc/buildgcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index e58b23ed45..b3329b0c5e 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 |