diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | read.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2009-10-22 Boris Kolpackov <boris@codesynthesis.com> + + * read.c (read_all_makefiles): Mark the default makefile dependency + dontcare. + 2009-10-07 Boris Kolpackov <boris@codesynthesis.com> * read.c (do_undefine): Free the expanded variable name. @@ -269,7 +269,7 @@ read_all_makefiles (const char **makefiles) { struct dep *d = alloc_dep (); d->file = enter_file (strcache_add (*p)); - d->file->dontcare = 1; + d->dontcare = 1; /* Tell update_goal_chain to bail out as soon as this file is made, and main not to die if we can't make this file. */ d->changed = RM_DONTCARE; |