Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/417
-gerrit commit 1b5519c088120550324b21ab5d15fee2cf6a3308 Author: Patrick Georgi <[email protected]> Date: Sat Nov 5 22:30:56 2011 +0100 buildgcc: Fix wrapper Makefile buildgcc moved from building gdb by default (with opt-out) to gdb being optional. Adapt Makefile so it works again Change-Id: I663a8c70db4f7b5d07456fb67a223dbb2de2c133 Signed-off-by: Patrick Georgi <[email protected]> --- util/crossgcc/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 8fe9c54..b63cc06 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -1,11 +1,11 @@ all: build build: - bash ./buildgcc + bash ./buildgcc -G .PHONY: build-without-gdb build-without-gdb: - bash ./buildgcc --skip-gdb + bash ./buildgcc clean: rm -rf xgcc -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

