From: Hauke Mehrtens Date: Sun, 17 Feb 2019 18:29:08 +0000 (+0100) Subject: build: Fix print without color X-Git-Tag: v19.07.0-rc1~1257 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=d0b45962ef63903cc9d3895dda0b2777a0c08acf build: Fix print without color The original patch removed the printing completely, just remove the color. Fixes: eabc1ddc4541 ("build: Honour NO_COLOR in include/scan.mk") Signed-off-by: Hauke Mehrtens --- diff --git a/include/scan.mk b/include/scan.mk index 724dbfaf17..d9cd4f7e8c 100644 --- a/include/scan.mk +++ b/include/scan.mk @@ -25,7 +25,7 @@ ifeq ($(IS_TTY),1) endef else define progress - :; + printf "\r$(1)" >&2; endef endif else