mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-27 06:27:57 +00:00
(define_makeflags): When no flags, set WORDS to zero.
This commit is contained in:
parent
1a886b6359
commit
e25e2fb7f5
1 changed files with 4 additions and 1 deletions
5
main.c
5
main.c
|
@ -1782,7 +1782,10 @@ define_makeflags (all, makefile)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (p == &flagstring[1])
|
else if (p == &flagstring[1])
|
||||||
--p;
|
{
|
||||||
|
words = 0;
|
||||||
|
--p;
|
||||||
|
}
|
||||||
else if (p[-1] == '-')
|
else if (p[-1] == '-')
|
||||||
/* Kill the final space and dash. */
|
/* Kill the final space and dash. */
|
||||||
p -= 2;
|
p -= 2;
|
||||||
|
|
Loading…
Reference in a new issue