Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-12-03 Thread Premi, Sanjeev
ailure in > examples/standalone > > > -Original Message- > > From: Peter Tyser [mailto:pty...@xes-inc.com] > > Sent: Monday, November 09, 2009 10:58 PM > > To: Premi, Sanjeev > > Cc: u-boot@lists.denx.de > > Subject: Re: [U-Boot] [PATCH v2] Fi

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-12-03 Thread Premi, Sanjeev
> -Original Message- > From: Peter Tyser [mailto:pty...@xes-inc.com] > Sent: Monday, November 09, 2009 10:58 PM > To: Premi, Sanjeev > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH v2] Fix build failure in > examples/standalone > > Hi Sanjeev, >

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-12-02 Thread Wolfgang Denk
Dear Sanjeev Premi, In message <1257786780-9618-1-git-send-email-pr...@ti.com> you wrote: > Some versions of 'make' do not handle trailing white-spaces > properly. Trailing spaces in ELF causes a 'fake' source to > be added to the variable COBJS; leading to build failure > (listed below). The prob

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-23 Thread Mike Frysinger
On Monday 16 November 2009 11:04:30 Premi, Sanjeev wrote: > From: Premi, Sanjeev > > +ElF := $(strip $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(BOARD)) $(ELF-$(CPU))) > > Just wanted to check if this update is okay? i'm guessing you missed peter's e-mail pointing out bugs in this change -mike signature.as

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-23 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d942dc...@dlee01.ent.ti.com> you wrote: > > > > +ElF := $(strip $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(BOARD)) $(ELF-$(CPU))) -- > If this is OK with everybody I'd like to push this to u-boot-ti. The patch is NOT ok, there is

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-23 Thread Paulraj, Sandeep
> > > > Some versions of 'make' do not handle trailing white-spaces > > properly. Trailing spaces in ELF causes a 'fake' source to > > be added to the variable COBJS; leading to build failure > > (listed below). The problem was found with GNU Make 3.80. > > > > Using text-function 'strip' as a wo

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-16 Thread Premi, Sanjeev
> -Original Message- > From: Premi, Sanjeev > Sent: Monday, November 09, 2009 10:43 PM > To: u-boot@lists.denx.de > Cc: Premi, Sanjeev > Subject: [PATCH v2] Fix build failure in examples/standalone > > Some versions of 'make' do not handle trailing white-spaces > properly. Trailing spaces

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-09 Thread Peter Tyser
Hi Sanjeev, > > -ELF := $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(BOARD)) $(ELF-$(CPU)) > +# > +# Some versions of make do not handle trailing white spaces properly; > +# leading to build failures. The problem was found with GNU Make 3.80. > +# Using 'strip' as a workaround for the problem. > +# > +ElF

[U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-09 Thread Sanjeev Premi
Some versions of 'make' do not handle trailing white-spaces properly. Trailing spaces in ELF causes a 'fake' source to be added to the variable COBJS; leading to build failure (listed below). The problem was found with GNU Make 3.80. Using text-function 'strip' as a workaround for the problem. ma