From 4b8f779278fdb85e4207bd1f06c0f90ea81c8069 Mon Sep 17 00:00:00 2001 From: "Jonathan A. Kollasch" Date: Thu, 11 Aug 2011 14:48:28 -0500 Subject: [PATCH] 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) --- util/crossgcc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.1