Re: [U-Boot] [PATCH 3/3] Makefile: cosmetic: optimize usage of LIBS-y

2012-08-14 Thread Marek Vasut
Dear Daniel Schwierzeck, > Signed-off-by: Daniel Schwierzeck > --- > Makefile | 18 +++--- > 1 file changed, 7 insertions(+), 11 deletions(-) > > diff --git a/Makefile b/Makefile > index 2bde73c..cf3c56d 100644 > --- a/Makefile > +++ b/Makefile > @@ -225,15 +225,15 @@ endif > > OB

Re: [U-Boot] [PATCH 3/3] Makefile: cosmetic: optimize usage of LIBS-y

2012-07-19 Thread Daniel Schwierzeck
Hi Mike, 2012/7/19 Mike Frysinger : > On Thursday 28 June 2012 12:45:21 Daniel Schwierzeck wrote: >> --- a/Makefile >> +++ b/Makefile >> >> +HAVE_VENDOR_COMMON_LIB := $(shell [ -f board/$(VENDOR)/common/Makefile ] \ >> + && echo y || echo n) > > HAVE_VENDOR_COMMON_LIB = $(if $(

Re: [U-Boot] [PATCH 3/3] Makefile: cosmetic: optimize usage of LIBS-y

2012-07-18 Thread Mike Frysinger
On Thursday 28 June 2012 12:45:21 Daniel Schwierzeck wrote: > --- a/Makefile > +++ b/Makefile > > +HAVE_VENDOR_COMMON_LIB := $(shell [ -f board/$(VENDOR)/common/Makefile ] \ > + && echo y || echo n) HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)

[U-Boot] [PATCH 3/3] Makefile: cosmetic: optimize usage of LIBS-y

2012-06-28 Thread Daniel Schwierzeck
Signed-off-by: Daniel Schwierzeck --- Makefile | 18 +++--- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 2bde73c..cf3c56d 100644 --- a/Makefile +++ b/Makefile @@ -225,15 +225,15 @@ endif OBJS := $(addprefix $(obj),$(OBJS)) +HAVE_VENDOR_