[bug #10593] $(shell) doesn't honor export but this is undocumented?

2022-07-09 Thread Kaz Kylheku
Follow-up Comment #8, bug #10593 (project make): This solution works for me, thanks to $(shell var=val command arg ...) working fine: # put desired env vars into "shell_env" variable shell_exports := foo000=bar000 foo001=bar001 # interpolate variable as a prefix of shell command $

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2022-07-09 Thread Paul D. Smith
Update of bug #10593 (project make): Status:None => Fixed Assigned to:None => psmith Open/Closed:Open => Closed Fixed Release:

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2017-01-02 Thread Paul D. Smith
Follow-up Comment #6, bug #10593 (project make): See also duplicate bug #35323 ___ Reply to this item at: ___ Message sent via/by Savannah http://sava

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2016-05-10 Thread Kaz Kylheku
Follow-up Comment #5, bug #10593 (project make): Of course this creates a backward compatibility problem if it is fixed. It is a change to existing behavior. For any such change, we can contrive code which depends on the old behavior. For instance, when ISO C added // comments in 1999, it broke c

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2016-05-10 Thread Gennady
Follow-up Comment #4, bug #10593 (project make): Or just 'fexport' or control export behavior with some variable. ___ Reply to this item at: ___ Message

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2016-05-10 Thread Brian Vandenberg
Follow-up Comment #3, bug #10593 (project make): Or perhaps the better named: $(setenv TEST,something else) ___ Reply to this item at: ___ Message se

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2016-05-10 Thread Brian Vandenberg
Follow-up Comment #2, bug #10593 (project make): This has the potential to create a backward compatibility problem if it were fixed. Currently someone could take advantage of the fact that "export" does not export to $(shell) environments and "fixing" this would alter that behavior. As an altern

[bug #10593] $(shell) doesn't honor export but this is undocumented?

2016-05-10 Thread Gennady
Follow-up Comment #1, bug #10593 (project make): Faced this today, as many other people do: http://stackoverflow.com/questions/2838715/makefile-variable-initialization-and-export If some of gmake contributors have a time, please fix. ___ R