[coreboot] New patch to review for filo: f1f9d46 makefile: don't evaluate empty input

Mathias Krause (mathias.krause@secunet.com) gerrit at coreboot.org
Tue Mar 6 16:42:27 CET 2012


Mathias Krause (mathias.krause at secunet.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/740

-gerrit

commit f1f9d467747176421a793ed0302730ee4b6a4bd2
Author: Mathias Krause <mathias.krause at secunet.com>
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 <mathias.krause at secunet.com>
---
 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 =




More information about the coreboot mailing list