Re: Setting an environment variable for tests

2010-12-17 Thread Andrew Savige
I don't know Module::Install, but a more portable Unix way to write:  export MATH_ROUND_FAIR_DEBUG=1 is:  MATH_ROUND_FAIR_DEBUG=1;export MATH_ROUND_FAIR_DEBUG The former abbreviated syntax was introduced in the Korn shell, while the latter works with both the Korn shell and the original Bourne

Re: Setting an environment variable for tests

2010-12-17 Thread Bill Ward
But the question is having the command be interpreted by make, not by the shell, right? On Fri, Dec 17, 2010 at 11:59 AM, Andrew Savige ajsav...@yahoo.com.auwrote: I don't know Module::Install, but a more portable Unix way to write: export MATH_ROUND_FAIR_DEBUG=1 is: