From 01bad6f73a55cf5075c6e48543a63a6094135a7d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 4 May 2013 10:41:11 +0300 Subject: 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 . --- job.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'job.c') diff --git a/job.c b/job.c index b245007..9a67ec4 100644 --- a/job.c +++ b/job.c @@ -1834,8 +1834,7 @@ start_job_command (struct child *child) child's stdout, and another one for its stderr, if they are separate. */ if (output_sync == OUTPUT_SYNC_MAKE - || (output_sync == OUTPUT_SYNC_TARGET - && !(flags & COMMANDS_RECURSE))) + || (output_sync && !(flags & COMMANDS_RECURSE))) { if (!assign_child_tempfiles (child, combined_output)) { -- cgit v1.2.3