summaryrefslogtreecommitdiff
path: root/spl
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2012-08-14 01:44:29 +0000
committerDetlev Zundel <dzu@denx.de>2012-08-17 18:07:12 +0200
commite66443fdb5355e68cfdbbdd37248c4b7eb4968f5 (patch)
tree31c1bb530b50249665459bcd622a76f114940735 /spl
parent81316a902a2c76bc880ab49c6d157e3e9754806d (diff)
Makefile: fix HAVE_VENDOR_COMMON_LIB
Commit 8b5a02640adf77301f943e8754992c50df004e8a ("Makefile: cosmetic: optimize usage of LIBS-y") broke the build of boards that have a board vendor "common" directory, by introducing a space between "LIBS-" and "y". Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Acked-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'spl')
-rw-r--r--spl/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/spl/Makefile b/spl/Makefile
index e9ecb9b75b..2cf7bdad63 100644
--- a/spl/Makefile
+++ b/spl/Makefile
@@ -23,7 +23,7 @@ include $(TOPDIR)/config.mk
# We want the final binaries in this directory
obj := $(OBJTREE)/spl/
-HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(SRCTREE)/board/$(VENDOR)/common/Makefile), y, n)
+HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(SRCTREE)/board/$(VENDOR)/common/Makefile),y,n)
ifdef CONFIG_SPL_START_S_PATH
START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH))