Re: GNU Make bug exporting environment variables to the "shell" command

2015-02-10 Thread David Highley
"Erich Boleyn wrote:" With a Bourne style shell you can pass what you want to the environment as done below. > > Summary: > Environment variables set in the Makefile do not get inherited > into anything run via the "shell" subcommand. > > Tested on GNU Make versions: > 3.81 (o

Re: GNU Make bug exporting environment variables to the "shell" command

2015-02-10 Thread Paul Smith
On Tue, 2015-02-10 at 10:35 -0800, Erich Boleyn wrote: > Summary: > Environment variables set in the Makefile do not get inherited > into anything run via the "shell" subcommand. Yes, this is known: https://savannah.gnu.org/bugs/index.php?35323 _

GNU Make bug exporting environment variables to the "shell" command

2015-02-10 Thread Erich Boleyn
Summary: Environment variables set in the Makefile do not get inherited into anything run via the "shell" subcommand. Tested on GNU Make versions: 3.81 (on Ubuntu) 4.1 (on FreeBSD) Example Makefile contents which can show the bug: export FOO=foo mai