[bug #43221] Random string corruption when recursively evaluating guile code.

2014-09-14 Thread Taahir Ahmed
URL: http://savannah.gnu.org/bugs/?43221 Summary: Random string corruption when recursively evaluating guile code. Project: make Submitted by: ahmedtd Submitted on: Sun 14 Sep 2014 07:38:49 AM GMT Severity: 3 - Normal

[bug #42447] Fix exporting symbols for recursive make on VMS.

2014-09-14 Thread John Malmberg
Follow-up Comment #3, bug #42447 (project make): Needed to patch file #32089. Discovered some tests failing because the expected exit code was wrong. Fixing this seems to have revealed what is needed to get parallism working on VMS in the future. (file #32093)

[bug #9060] --warn-undefined-variables

2014-09-14 Thread Mietek Bak
Follow-up Comment #3, bug #9060 (project make): Specifying MAKEFLAGS += --warn-undefined-variables within a Makefile is not equivalent to specifying the same option on the command-line. Test case: MAKEFLAGS += --warn-undefined-variables $(foo): @echo foo bar: @echo $(bar) This

[bug #9060] --warn-undefined-variables

2014-09-14 Thread Paul D. Smith
Follow-up Comment #4, bug #9060 (project make): The way make currently works is that MAKEFLAGS is re-parsed only after all the makefiles have been read in and before make is about to start running recipes. MAKEFLAGS is not reparsed immediately every time it's changes. This leads to the behavior