X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/150b0c9cabdc88d533dde0a019e3edf060dff7d3..ea4e6a2593d6bc6244cb4d46077fceaf0169e098:/include/verbose.mk?ds=sidebyside diff --git a/include/verbose.mk b/include/verbose.mk index 36002aee9..99747ed3f 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -18,9 +18,9 @@ ifeq ("$(origin V)", "command line") KBUILD_VERBOSE:=$(V) endif -ifneq ($(shell tty -s <&3 || echo x),x) - _Y:="\\33[33m"# yellow - _N:="\\33[m"# normal +ifeq ($(IS_TTY),1) + _Y:="\\033[33m" # yellow + _N:="\\033[m" #normal endif ifneq ($(KBUILD_VERBOSE),99) @@ -36,7 +36,7 @@ ifneq ($(KBUILD_VERBOSE),99) ifeq ($(KBUILD_VERBOSE),0) MAKE:=&>/dev/null $(MAKE) endif - MAKE:=cmd() { $(MAKE) $$* || { echo "Build failed. Please re-run make with V=99 to see what's going on"; /bin/false; } } 3>&1 4>&2; cmd + MAKE:=cmd() { $(MAKE) $$* || { echo "Build failed. Please re-run make with V=99 to see what's going on"; false; } } 3>&1 4>&2; cmd endif .SILENT: $(MAKECMDGOALS)