X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=include%2Fverbose.mk;h=d34f55fc4867b8a5eb86f6b5daf2bf3f462264b0;hb=869bd8a409d2fb6a66e39ef8d301789d0f8d8c93;hp=2e8ace442ec74c365be87cc2a85aa240ee38443d;hpb=c0f36f43cdb279dd21cc2a1a9bb35cbc4c7451cb;p=openwrt%2Fsvn-archive%2Farchive.git diff --git a/include/verbose.mk b/include/verbose.mk index 2e8ace442e..d34f55fc48 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -27,6 +27,7 @@ endif ifeq ($(IS_TTY),1) ifneq ($(strip $(NO_COLOR)),1) _Y:=\\033[33m + _R:=\\033[31m _N:=\\033[m endif endif @@ -36,6 +37,10 @@ ifeq ($(findstring s,$(OPENWRT_VERBOSE)),) printf "$(_Y)%s$(_N)\n" "$(1)" >&8 endef + define ERROR_MESSAGE + printf "$(_R)%s$(_N)\n" "$(1)" >&8 + endef + ifeq ($(QUIET),1) ifneq ($(CURDIR),$(TOPDIR)) _DIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR}) @@ -58,4 +63,5 @@ else define MESSAGE printf "%s\n" "$(1)" endef + ERROR_MESSAGE=$(MESSAGE) endif