[coreboot] New patch to review: c99edf2 crossgcc: invoke buildgcc with bash, instead of relying on #!/bin/bash

Jonathan A. Kollasch (jakllsch@kollasch.net) gerrit at coreboot.org
Thu Aug 11 21:50:00 CEST 2011


Jonathan A. Kollasch (jakllsch at kollasch.net) 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 <jakllsch at kollasch.net>
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 <jakllsch at kollasch.net>
---
 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




More information about the coreboot mailing list