mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
Formerly commands.c.~10~
This commit is contained in:
parent
d8f06cf21f
commit
e7930bea3a
1 changed files with 9 additions and 4 deletions
13
commands.c
13
commands.c
|
@ -322,12 +322,17 @@ chop_commands (cmds)
|
|||
cmds->lines_recurse = (char *) xmalloc (nlines);
|
||||
for (idx = 0; idx < nlines; ++idx)
|
||||
{
|
||||
unsigned int len;
|
||||
int recursive;
|
||||
p = lines[idx];
|
||||
len = strlen (p);
|
||||
recursive = (sindex (p, len, "$(MAKE)", 7) != 0
|
||||
|| sindex (p, len, "${MAKE}", 7) != 0);
|
||||
while (isblank (*p) || *p == '-' || *p == '@')
|
||||
++p;
|
||||
recursive = *p == '+';
|
||||
if (!recursive)
|
||||
{
|
||||
unsigned int len = strlen (p);
|
||||
recursive = (sindex (p, len, "$(MAKE)", 7) != 0
|
||||
|| sindex (p, len, "${MAKE}", 7) != 0);
|
||||
}
|
||||
cmds->lines_recurse[idx] = recursive;
|
||||
cmds->any_recurse |= recursive;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue