On Mon, 2008-04-21 at 10:43 -0700, Brian Dessent wrote: > CFLAGS = $(filter-out -D_REMOVE_THIS_,$(CFLAGS))
You can't do this: recursive variables cannot reference themselves. You'd have to use := and change this to a simply-expanded variable (which might break other things). Your best bet, as pointed out by someone else, is to add -O0 (or whatever) to override the optimizer setting. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.us "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
