mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 00:12:11 +00:00
Don't strip out EOL and other whitespace from action output.
This commit is contained in:
@@ -780,7 +780,7 @@ static void call_action_rule
|
||||
/* Clean the output of control characters. */
|
||||
for (; *output_i; ++output_i)
|
||||
{
|
||||
if (iscntrl(*output_i)) *output_i = '?';
|
||||
if (iscntrl(*output_i) && !isspace(*output_i)) *output_i = '?';
|
||||
}
|
||||
lol_add( frame->args, list_new( command_output_obj ) );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user