From 15f795793906ac8b184b5cf9dcbe515ba9df92ef Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 5 May 2013 20:19:00 -0400 Subject: Rename the -O "job" mode to "line" and "make" to "recurse". --- job.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'job.c') diff --git a/job.c b/job.c index 726cca8..a40eb41 100644 --- a/job.c +++ b/job.c @@ -1141,7 +1141,7 @@ reap_children (int block, int err) #ifdef OUTPUT_SYNC /* If we're sync'ing per line, write the previous line's output before starting the next one. */ - if (output_sync == OUTPUT_SYNC_JOB) + if (output_sync == OUTPUT_SYNC_LINE) sync_output (c); #endif /* Check again whether to start remotely. @@ -1518,7 +1518,7 @@ start_job_command (struct child *child) /* Are we going to synchronize this command's output? Do so if either we're in SYNC_MAKE mode or this command is not recursive. We'll also check output_sync separately below in case it changes due to error. */ - sync_cmd = output_sync && (output_sync == OUTPUT_SYNC_MAKE + sync_cmd = output_sync && (output_sync == OUTPUT_SYNC_RECURSE || !(flags & COMMANDS_RECURSE)); #ifdef OUTPUT_SYNC -- cgit v1.2.3