summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2014-04-26 15:29:10 +0200
committerPatrick Georgi <patrick@georgi-clan.de>2014-05-03 00:27:13 +0200
commitc38f3ae0dee4c413fc931bd1c294faeada807665 (patch)
treee120ba592d548926c0e8ad03695fdfa6cd3771b6 /Makefile
parent88ca81a6d41f8f0b3491ce9f4b1ac553ed093ddf (diff)
downloadcoreboot-c38f3ae0dee4c413fc931bd1c294faeada807665.tar.gz
coreboot-c38f3ae0dee4c413fc931bd1c294faeada807665.tar.bz2
coreboot-c38f3ae0dee4c413fc931bd1c294faeada807665.zip
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@georgi-clan.de> Reviewed-on: http://review.coreboot.org/5584 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Martin Roth <martin.roth@se-eng.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b709d14a9dbc..83381613b0ff 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)