mirror of
https://github.com/mirror/make.git
synced 2026-09-05 22:25:00 +08:00
Bug fixes and automake changes.
This commit is contained in:
@@ -1049,8 +1049,15 @@ expand_function (o, function, text, end)
|
||||
text = expand_argument (text, end);
|
||||
|
||||
p2 = text;
|
||||
while ((p = find_next_token (&p2, &i)) != 0)
|
||||
while (*p2 != '\0')
|
||||
{
|
||||
while (isspace(*p2))
|
||||
++p2;
|
||||
p = p2;
|
||||
for (i=0; *p2 != '\0' && !isspace(*p2); ++p2, ++i)
|
||||
{}
|
||||
if (!i)
|
||||
break;
|
||||
o = variable_buffer_output (o, p, i);
|
||||
o = variable_buffer_output (o, " ", 1);
|
||||
doneany = 1;
|
||||
|
||||
Reference in New Issue
Block a user