[U-Boot] [PATCH] COMMON: Fix HAVE_VENDOR_COMMON_LIB mistake

Marek Vasut marex at denx.de
Tue Aug 14 21:27:20 CEST 2012


The conditional clause assigning HAVE_VENDOR_COMMON_LIB generated
" y" instead of "y", causing the vendor lib not being built. This
in turn made some spear boards and nvidia boards broken.

Signed-off-by: Marek Vasut <marex at denx.de>
Cc: Wolfgang Denk <wd at denx.de>
Cc: Daniel Schwierzeck <daniel.schwierzeck at gmail.com>
---
 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 5ce5cc3..947f3ff 100644
--- a/Makefile
+++ b/Makefile
@@ -225,7 +225,7 @@ endif
 
 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/lzma/liblzma.o
-- 
1.7.10.4



More information about the U-Boot mailing list