Formerly commands.c.~10~

This commit is contained in:
Roland McGrath 1992-09-09 20:20:37 +00:00
parent d8f06cf21f
commit e7930bea3a

View file

@ -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;
}