On Wed, 2010-04-07 at 10:40 +0800, Raghu wrote: > gnumake: *** [testRT_instrument_source] Error 53
This message means that the program GNU make invoked (testRT_instrument_source) exited with an error code of "53", rather than a success code (0). So you need to look at the testRT_instrument_source and find out why it exited with an error code instead of a success code. Alternatively you could tell make to ignore the error code (prefix the recipe line with "-" for example) but then if it did legitimately fail, make would not stop the build. -- ------------------------------------------------------------------------------- Paul D. Smith <[email protected]> Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Bug-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-make
