* Matthew Musgrove <mr.musk...@gmail.com> [101215 17:31]: > Marc, > I'm far from the Makefile expert but shouldn't the line that gets to the > Makefile > look like one of these? > export MATH_ROUND_FAIR_DEBUG := 1 > or: > MATH_ROUND_FAIR_DEBUG := 1 > > If so, just wrapper that in a preamble call and it should be good to go.
Both work in Linux (GNU make). ":=" is probably more correct, since it is simple expansion and "=" is recursive expansion. But I think the end result is the same. It's a guess, on my part, but it seems the "make" on other platforms isn't setting $ENV{MATH_ROUND_FAIR} based on that. -Marc