mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-08-19 11:46:07 -04:00
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>
This commit is contained in:
parent
81316a902a
commit
e66443fdb5
2
Makefile
2
Makefile
@ -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
|
|||||||
# 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))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user