diff options
Diffstat (limited to 'message.mk')
-rw-r--r-- | message.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/message.mk b/message.mk index dcd47e550..419e3f5f3 100644 --- a/message.mk +++ b/message.mk | |||
@@ -36,6 +36,10 @@ PRINT_OK = $(SILENT) || printf " $(OK_STRING)" | $(AWK_STATUS) | |||
36 | BUILD_CMD = LOG=$$($(CMD) 2>&1) ; if [ $$? -gt 0 ]; then $(PRINT_ERROR); elif [ "$$LOG" != "" ] ; then $(PRINT_WARNING); else $(PRINT_OK); fi; | 36 | BUILD_CMD = LOG=$$($(CMD) 2>&1) ; if [ $$? -gt 0 ]; then $(PRINT_ERROR); elif [ "$$LOG" != "" ] ; then $(PRINT_WARNING); else $(PRINT_OK); fi; |
37 | MAKE_MSG_FORMAT = $(AWK) '{ printf "%-118s", $$0;}' | 37 | MAKE_MSG_FORMAT = $(AWK) '{ printf "%-118s", $$0;}' |
38 | 38 | ||
39 | # The UNSYNC_OUTPUT_CMD command disables the `--output-sync` for the current command, if the `--output-sync` granularity is `target` or lower. | ||
40 | # This is achieved by telling make to treat the current command as if it invokes a recursive make subcommand (as if by calling `$(MAKE)`). | ||
41 | UNSYNC_OUTPUT_CMD = +true | ||
42 | |||
39 | # Define Messages | 43 | # Define Messages |
40 | # English | 44 | # English |
41 | MSG_ERRORS_NONE = Errors: none | 45 | MSG_ERRORS_NONE = Errors: none |