mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-11 07:51:36 +00:00
Formerly job.c.~81~
This commit is contained in:
parent
db7633eac4
commit
2ebdf6de85
1 changed files with 11 additions and 2 deletions
9
job.c
9
job.c
|
@ -480,6 +480,15 @@ start_job_command (child)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (touch_flag && !recursive)
|
||||||
|
{
|
||||||
|
/* Go on to the next command. It might be the recursive one.
|
||||||
|
We construct ARGV only to find the end of the command line. */
|
||||||
|
free (argv[0]);
|
||||||
|
free ((char *) argv);
|
||||||
|
argv = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (argv == 0)
|
if (argv == 0)
|
||||||
{
|
{
|
||||||
/* This line has no commands. Go to the next. */
|
/* This line has no commands. Go to the next. */
|
||||||
|
|
Loading…
Reference in a new issue