summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-07-09 22:55:44 +0000
committerPaul Smith <psmith@gnu.org>1999-07-09 22:55:44 +0000
commit8df9d5402017dbc6af67e9baa1c0baac5c59f4ff (patch)
tree20eb661a53f89abae673007470e9b1e5a569689e /remake.c
parent9035aa27b7485bfdc12f8c577208a20a8b3747b6 (diff)
downloadgunmake-8df9d5402017dbc6af67e9baa1c0baac5c59f4ff.tar.gz
* Fixed error rebuilding makefiles with -j>1
* Fixed problem with job pipe and -j>1 when waiting on -l loads.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/remake.c b/remake.c
index d39c558..94b70e1 100644
--- a/remake.c
+++ b/remake.c
@@ -94,7 +94,7 @@ update_goal_chain (goals, makefiles)
struct dep *g;
for (g = goals; g != 0; g = g->next)
- g->changed = 0;
+ g->changed = g->deferred = 0;
}
#if 0
@@ -161,6 +161,16 @@ update_goal_chain (goals, makefiles)
decide when to give an "up to date" diagnostic. */
g->changed += commands_started - ocommands_started;
+ /* Set the goal's `deferred' flag if we started a command but
+ it didn't finish (parallel builds). We need to remember
+ this, because the next time through the goal chain the call
+ to reap_children() will set the mtime, not the call to
+ update_file() above. So, the saved mtime from before
+ update_file() will be the same as the mtime after it, and
+ we'll think nothing changed when it did (see below). */
+ if (file->command_state == cs_running)
+ g->deferred = 1;
+
stop = 0;
if (x != 0 || file->updated)
{
@@ -181,7 +191,7 @@ update_goal_chain (goals, makefiles)
stop = (!keep_going_flag && !question_flag
&& !makefiles);
}
- else if (MTIME (file) != mtime)
+ else if (MTIME (file) != mtime || g->deferred)
{
/* Updating was done. If this is a makefile and
just_print_flag or question_flag is set
@@ -189,6 +199,7 @@ update_goal_chain (goals, makefiles)
specified as a command-line target), don't
change STATUS. If STATUS is changed, we will
get re-exec'd, and fall into an infinite loop. */
+ g->deferred = 0;
if (!makefiles
|| (!just_print_flag && !question_flag))
status = 0;