diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-05-12 23:25:23 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-05-14 18:33:41 +0200 |
commit | 5fb2b5cdacb1c76f4661cb34d7159fd266998d10 (patch) | |
tree | d7316ce5c54c08509f1bb1658aeeff2e004632c8 /util/crossgcc | |
parent | 6e61ad347c829088f25d42a88f055d1f999d71c1 (diff) | |
download | coreboot-5fb2b5cdacb1c76f4661cb34d7159fd266998d10.tar.xz |
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@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1026
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index f5c06f1be3..415b408d78 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... " |