diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-06-17 11:55:02 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-06-17 21:15:17 +0200 |
commit | bd8b2e31d2a711c488aff41319fb2201c8e11dd2 (patch) | |
tree | 4e67d2c225da86778aebc4d318f9853eff298f4b | |
parent | 682a90c011c3cfbf89ce7af06db92d999161056a (diff) | |
download | coreboot-bd8b2e31d2a711c488aff41319fb2201c8e11dd2.tar.xz |
buildgcc: Don't build iasl with gcc
There's a separate target -P iasl for that now.
Change-Id: I95c0fe8fc266859d8a31b7bea890775dc9f19694
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/10567
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-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 0ab0a530e4..657df2cc13 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -541,7 +541,7 @@ case "$PACKAGE" in GCC|gcc) echo "Target architecture is now $TARGETARCH" NAME="${TARGETARCH} cross GCC" - PACKAGES="GMP MPFR MPC LIBELF BINUTILS GCC IASL" + PACKAGES="GMP MPFR MPC LIBELF BINUTILS GCC" ;; GDB|gdb) NAME="${TARGETARCH} cross GDB" |