diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2013-08-27 10:23:13 +0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-08-27 19:55:55 +0200 |
commit | 3c4bd91a341bd40df1aa7e99549591c1e2e61504 (patch) | |
tree | f3a0f43953fc9f8a0e0ecdefc84ef671789e2f44 /util/crossgcc | |
parent | f77f734d38364e9ea48d10e4a4e19f4e2da9bde0 (diff) |
Locate the generated iasl in acpica-unix-20130626
acpica-unix-20130626 doesn't use bin32 and bin64 to save the objects
any more.
Change-Id: I419ecc987e2adcd860a8ad1bf2f6b5c4dd40fd8a
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/3885
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 7dcea382a8..57f536efc2 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -603,8 +603,7 @@ printf "Building IASL ${IASL_VERSION} ... " test $UNAME = "Cygwin" && HOST="_CYGWIN" HOST="$HOST" OPT_CFLAGS="-O -D_FORTIFY_SOURCE=2" CFLAGS="$CFLAGS" $MAKE CC="$CC" iasl || touch .failed rm -f $DESTDIR$TARGETDIR/bin/iasl || touch .failed - if [ -d bin32 ]; then cp bin32/iasl $DESTDIR$TARGETDIR/bin || touch .failed ; fi - if [ -d bin64 ]; then cp bin64/iasl $DESTDIR$TARGETDIR/bin || touch .failed ; fi + cp bin/iasl $DESTDIR$TARGETDIR/bin || touch .failed if [ ! -f .failed ]; then touch .success; fi ) > $IASL_DIR/source/compiler/crossgcc-build.log 2>&1 test -r $IASL_DIR/generate/unix/.failed && printf "${RED}failed${NC}\n" || \ |