Allow colored output to be disabled when running a non-verbose build by
setting NO_COLOR=1 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19560 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
8fe0500386
commit
9c13b4a081
|
@ -18,9 +18,11 @@ ifeq ("$(origin V)", "command line")
|
|||
endif
|
||||
|
||||
ifeq ($(IS_TTY),1)
|
||||
ifneq ($(strip $(NO_COLOR)),1)
|
||||
_Y:=\\033[33m
|
||||
_N:=\\033[m
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ($(KBUILD_VERBOSE),99)
|
||||
define MESSAGE
|
||||
|
|
Loading…
Reference in New Issue