[coreboot-gerrit] New patch to review for coreboot: 86f602e build: allow building crossgcc when .config exists

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Sat Apr 26 15:31:40 CEST 2014


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

-gerrit

commit 86f602e30cd5e6a45243512e4dec0668ca6d922d
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Sat Apr 26 15:29:10 2014 +0200

    build: allow building crossgcc when .config exists
    
    Under some circumstances the coreboot toolchain test prevented
    building crossgcc, which is counter-productive: If a .config file
    exists but no suitable .xcompile.
    
    Don't assume anything about the tree when building crossgcc or
    crosstools targets.
    
    Change-Id: I4d6e7a88908dc967342daf30df0fcbcc269ae63d
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index b709d14..8338161 100644
--- a/Makefile
+++ b/Makefile
@@ -97,7 +97,7 @@ ifeq ($(strip $(HAVE_DOTCONFIG)),)
 NOCOMPILE:=1
 endif
 ifneq ($(MAKECMDGOALS),)
-ifneq ($(filter %config %clean,$(MAKECMDGOALS)),)
+ifneq ($(filter %config %clean cross%,$(MAKECMDGOALS)),)
 NOCOMPILE:=1
 endif
 ifeq ($(MAKECMDGOALS), %clean)



More information about the coreboot-gerrit mailing list