Jonathan A. Kollasch ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/151
-gerrit commit c99edf22772850abe75e45f0350669e692b189fe Author: Jonathan A. Kollasch <[email protected]> Date: Thu Aug 11 14:48:28 2011 -0500 crossgcc: invoke buildgcc with bash, instead of relying on #!/bin/bash Change-Id: I09192e57e2535b2f8f98cabeb755f10c5520c499 Signed-off-by: Jonathan A. Kollasch <[email protected]> --- util/crossgcc/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 31f6656..8fe9c54 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -1,11 +1,11 @@ all: build build: - ./buildgcc + bash ./buildgcc .PHONY: build-without-gdb build-without-gdb: - ./buildgcc --skip-gdb + bash ./buildgcc --skip-gdb clean: rm -rf xgcc -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

