Mathias Krause ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/740
-gerrit commit f1f9d467747176421a793ed0302730ee4b6a4bd2 Author: Mathias Krause <[email protected]> Date: Mon Mar 5 11:23:24 2012 +0100 makefile: don't evaluate empty input The output from util/xcompile/xcompile is redirected, so there is nothing left for make to $(eval)uate. Change-Id: I0f482c4b680ca3eded4664c0a57e8525c068feaf Signed-off-by: Mathias Krause <[email protected]> --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index debb816..d880f68 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ ifneq ($(Q),) endif endif -$(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile))) +$(if $(wildcard .xcompile),,$(shell bash util/xcompile/xcompile > .xcompile)) include .xcompile CROSS_PREFIX = -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

