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

Daniel Schwierzeck daniel.schwierzeck at gmail.com
Tue Aug 14 21:50:14 CEST 2012


Hi Marek,

2012/8/14 Marek Vasut <marex at denx.de>:
> 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
>

there is already a patch for this
http://patchwork.ozlabs.org/patch/177235/

sorry for the inconvenience

-- 
Best regards,
Daniel


More information about the U-Boot mailing list