From e66443fdb5355e68cfdbbdd37248c4b7eb4968f5 Mon Sep 17 00:00:00 2001 From: Scott Wood Date: Tue, 14 Aug 2012 01:44:29 +0000 Subject: 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 Signed-off-by: Daniel Schwierzeck Acked-by: Kim Phillips --- spl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spl/Makefile') 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)) -- cgit v1.2.3