From: Jonathan A. Kollasch Date: Thu, 11 Aug 2011 19:48:28 +0000 (-0500) Subject: crossgcc: invoke buildgcc with bash, instead of relying on #!/bin/bash X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=commitdiff_plain;h=4b8f779278fdb85e4207bd1f06c0f90ea81c8069 crossgcc: invoke buildgcc with bash, instead of relying on #!/bin/bash Change-Id: I09192e57e2535b2f8f98cabeb755f10c5520c499 Signed-off-by: Jonathan A. Kollasch Reviewed-on: http://review.coreboot.org/151 Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 31f66569d..8fe9c54cd 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