Skip to content
Snippets Groups Projects
Commit e66443fd authored by Scott Wood's avatar Scott Wood Committed by Detlev Zundel
Browse files

Makefile: fix HAVE_VENDOR_COMMON_LIB


Commit 8b5a0264 ("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: default avatarScott Wood <scottwood@freescale.com>
Signed-off-by: default avatarDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Acked-by: default avatarKim Phillips <kim.phillips@freescale.com>
parent 81316a90
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,7 @@ endif ...@@ -225,7 +225,7 @@ endif
OBJS := $(addprefix $(obj),$(OBJS)) OBJS := $(addprefix $(obj),$(OBJS))
HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile), y, n) HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
LIBS-y += lib/libgeneric.o LIBS-y += lib/libgeneric.o
LIBS-y += lib/lzma/liblzma.o LIBS-y += lib/lzma/liblzma.o
......
...@@ -23,7 +23,7 @@ include $(TOPDIR)/config.mk ...@@ -23,7 +23,7 @@ include $(TOPDIR)/config.mk
# We want the final binaries in this directory # We want the final binaries in this directory
obj := $(OBJTREE)/spl/ 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 ifdef CONFIG_SPL_START_S_PATH
START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH)) START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment