summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.c b/main.c
index 0037587..be3d190 100644
--- a/main.c
+++ b/main.c
@@ -695,7 +695,11 @@ decode_output_sync_flags (void)
{
const char *p = *pp;
- if (streq (p, "target"))
+ if (streq (p, "none"))
+ output_sync = OUTPUT_SYNC_NONE;
+ else if (streq (p, "job"))
+ output_sync = OUTPUT_SYNC_JOB;
+ else if (streq (p, "target"))
output_sync = OUTPUT_SYNC_TARGET;
else if (streq (p, "make"))
output_sync = OUTPUT_SYNC_MAKE;