Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1860
-gerrit commit 21c4dcdb8ac15b177c51c2de769012cc2b12f691 Author: Stefan Reinauer <[email protected]> Date: Thu Nov 15 11:31:38 2012 -0800 buildgcc: Print error if flex is missing flex is needed by acpica. This patch makes the build fail early instead of after gcc has been compiled, if flex is not there. Change-Id: Idfd71bdf704ab25de655f1a72c266c5220b15048 Signed-off-by: Stefan Reinauer <[email protected]> --- util/crossgcc/buildgcc | 1 + 1 file changed, 1 insertion(+) diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index f17ec89..91ec1cf 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -119,6 +119,7 @@ MAKE=`searchgnu make` || exit $? searchgnu m4 > /dev/null searchgnu bison > /dev/null +searchgnu flex > /dev/null cleanup() { -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

