mirror of
https://github.com/mirror/make.git
synced 2025-02-05 01:00:11 +08:00
Fix the MS-Windows branch of output_sync code.
job.c (start_job_command): Make the condition for creating a temporary output file be identical to the Posix code branch. Suggested by Frank Heckenbach <f.heckenbach@fh-soft.de>.
This commit is contained in:
parent
82793f85f5
commit
01bad6f73a
@ -1,3 +1,9 @@
|
|||||||
|
2013-05-04 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* job.c (start_job_command): Make the condition for creating a
|
||||||
|
temporary output file be identical to the Posix code branch.
|
||||||
|
Suggested by Frank Heckenbach <f.heckenbach@fh-soft.de>.
|
||||||
|
|
||||||
2013-05-03 Eli Zaretskii <eliz@gnu.org>
|
2013-05-03 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
* w32/subproc/sub_proc.c: Include makeint.h. Remove a private
|
* w32/subproc/sub_proc.c: Include makeint.h. Remove a private
|
||||||
|
3
job.c
3
job.c
@ -1834,8 +1834,7 @@ start_job_command (struct child *child)
|
|||||||
child's stdout, and another one for its stderr, if they
|
child's stdout, and another one for its stderr, if they
|
||||||
are separate. */
|
are separate. */
|
||||||
if (output_sync == OUTPUT_SYNC_MAKE
|
if (output_sync == OUTPUT_SYNC_MAKE
|
||||||
|| (output_sync == OUTPUT_SYNC_TARGET
|
|| (output_sync && !(flags & COMMANDS_RECURSE)))
|
||||||
&& !(flags & COMMANDS_RECURSE)))
|
|
||||||
{
|
{
|
||||||
if (!assign_child_tempfiles (child, combined_output))
|
if (!assign_child_tempfiles (child, combined_output))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user