mirror of
https://github.com/mirror/make.git
synced 2025-01-26 12:21:02 +08:00
job.c (start_job_command) [WINDOWS32]: Make the same fix for
MS-Windows as the previous commit did for Posix platforms.
This commit is contained in:
parent
9acb657eb1
commit
a87ff20158
@ -1,3 +1,8 @@
|
||||
2013-05-01 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* job.c (start_job_command) [WINDOWS32]: Make the same fix for
|
||||
MS-Windows as the previous commit did for Posix platforms.
|
||||
|
||||
2013-05-01 Paul Smith <psmith@gnu.org>
|
||||
|
||||
* job.c (start_job_command): Don't redirect output for recursive
|
||||
|
6
job.c
6
job.c
@ -1857,8 +1857,10 @@ start_job_command (struct child *child)
|
||||
sync_Path_environment();
|
||||
|
||||
#ifdef OUTPUT_SYNC
|
||||
/* Divert child output into tempfile(s) if output_sync in use. */
|
||||
if (output_sync)
|
||||
/* Divert child output if output_sync in use. Don't capture
|
||||
recursive make output unless we are synchronizing "make" mode. */
|
||||
if (output_sync && (output_sync == OUTPUT_SYNC_MAKE
|
||||
|| !(flags & COMMANDS_RECURSE)))
|
||||
hPID = process_easy(argv, child->environment,
|
||||
child->outfd, child->errfd);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user