mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-07 15:16:58 +00:00
Formerly job.c.~101~
This commit is contained in:
parent
683e4a5de9
commit
6ee7823efe
1 changed files with 8 additions and 1 deletions
9
job.c
9
job.c
|
@ -332,7 +332,14 @@ reap_children (block, err)
|
||||||
|
|
||||||
/* If there are more commands to run, try to start them. */
|
/* If there are more commands to run, try to start them. */
|
||||||
if (job_next_command (c))
|
if (job_next_command (c))
|
||||||
start_job_command (c);
|
{
|
||||||
|
/* Check again whether to start remotely.
|
||||||
|
Whether or not we want to changes over time.
|
||||||
|
Also, start_remote_job may need state set up
|
||||||
|
by start_remote_job_p. */
|
||||||
|
c->remote = start_remote_job_p ();
|
||||||
|
start_job_command (c);
|
||||||
|
}
|
||||||
|
|
||||||
switch (c->file->command_state)
|
switch (c->file->command_state)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue