[U-Boot] [PATCH v8 21/31] Makefile: Move SHELL setup to config.mk

2013-03-01 Thread Benoît Thébaudeau
make never uses the SHELL variable from the environment. Instead, it uses /bin/sh, or the value assigned to the SHELL variable by the Makefile. This makes the export of the SHELL variable useless for sub-makes (but still useful for the environment of recipes). However, we want all makes to use the

Re: [U-Boot] [PATCH v8 21/31] Makefile: Move SHELL setup to config.mk

2013-03-01 Thread Tom Rini
On Fri, Mar 01, 2013 at 01:10:30PM +0100, Beno??t Th??baudeau wrote: make never uses the SHELL variable from the environment. Instead, it uses /bin/sh, or the value assigned to the SHELL variable by the Makefile. This makes the export of the SHELL variable useless for sub-makes (but still