From e7930bea3aacadb62daf55056274ac03e1501b9e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 9 Sep 1992 20:20:37 +0000 Subject: Formerly commands.c.~10~ --- commands.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'commands.c') diff --git a/commands.c b/commands.c index b1bc62d..21ed9d9 100644 --- a/commands.c +++ b/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; } -- cgit v1.2.3