Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-05-12 Thread Che-liang Chiou
Thanks, Wolfgang. On Fri, May 13, 2011 at 4:30 AM, Wolfgang Denk wrote: > Dear Che-liang Chiou, > > In message you > wrote: >> GNU Makefile have two flavors of variables, recursively expanded that is >> defined by using '=', and simply expanded that is defined by using ':='. >> >> The bug is ca

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-05-12 Thread Wolfgang Denk
Dear Che-liang Chiou, In message you wrote: > GNU Makefile have two flavors of variables, recursively expanded that is > defined by using '=', and simply expanded that is defined by using ':='. > > The bug is caused by using recursively expanded flavor for BIN and SREC. > As you can see below,

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-04-13 Thread Che-liang Chiou
Dear Wolfgang Denk, I checked out the master of the git repo of that time (Feb 22?). Regards, Che-Liang On Thu, Apr 14, 2011 at 4:45 AM, Wolfgang Denk wrote: > Dear Che-liang Chiou, > > In message you > wrote: >> >> On Tue, Feb 22, 2011 at 3:33 PM, Wolfgang Denk wrote: >> > In message > >>

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-04-13 Thread Wolfgang Denk
Dear Che-liang Chiou, In message you wrote: > > On Tue, Feb 22, 2011 at 3:33 PM, Wolfgang Denk wrote: > > In message > > > you wrote: > >> The bug is caused by using recursively expanded flavor for BIN and SREC. > > You wrote "The bug". How does this bug manifest in U-Boot? For which > > con

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-02-22 Thread Che-liang Chiou
Dear Wolfgang Denk, On Tue, Feb 22, 2011 at 3:33 PM, Wolfgang Denk wrote: > In message you > wrote: >> The bug is caused by using recursively expanded flavor for BIN and SREC. > You wrote "The bug".  How does this bug manifest in U-Boot?  For which > configuration do you see issues? The bug I

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-02-21 Thread Wolfgang Denk
Dear Che-liang Chiou, In message you wrote: > GNU Makefile have two flavors of variables, recursively expanded that is > defined by using '=', and simply expanded that is defined by using ':='. > > The bug is caused by using recursively expanded flavor for BIN and SREC. You wrote "The bug". H

[U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-02-21 Thread Che-liang Chiou
GNU Makefile have two flavors of variables, recursively expanded that is defined by using '=', and simply expanded that is defined by using ':='. The bug is caused by using recursively expanded flavor for BIN and SREC. As you can see below, they are prepended by $(obj) twice. We can reproduce thi