diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | read.c | 3 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2005-12-14 Boris Kolpackov <boris@kolpackov.net> + + * read.c (record_target_var): Initialize variable's export field + with v_default instead of leaving it "initialized" by whatever + garbage happened to be on the heap. + 2005-12-12 Paul D. Smith <psmith@gnu.org> * make.1: Fix some display errors and document all existing options. @@ -1838,8 +1838,7 @@ record_target_var (struct nameseq *filenames, char *defn, /* Set up the variable to be *-specific. */ v->origin = origin; v->per_target = 1; - if (exported) - v->export = v_export; + v->export = exported ? v_export : v_default; /* If it's not an override, check to see if there was a command-line setting. If so, reset the value. */ |