[coreboot] Patch set updated for coreboot: 2cae4a4 crossgcc: Test for m4 and bison

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Sun May 13 00:42:03 CEST 2012


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1026

-gerrit

commit 2cae4a41616ca7a7aba6c6db680d94c7bbbd5476
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Sat May 12 23:25:23 2012 +0200

    crossgcc: Test for m4 and bison
    
    Happened way too often that crossgcc failed
    because m4 or bison wasn't installed already.
    
    Change-Id: Ibcca2183edd5db20608015e3898f8fff9a6d11e8
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 util/crossgcc/buildgcc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index f5c06f1..415b408 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -107,6 +107,9 @@ TAR=`searchgnu tar` || exit $?
 PATCH=`searchgnu patch` || exit $?
 MAKE=`searchgnu make` || exit $?
 
+searchgnu m4 > /dev/null
+searchgnu bison > /dev/null
+
 cleanup()
 {
 	printf "Cleaning up temporary files... "




More information about the coreboot mailing list