From d0b45962ef63903cc9d3895dda0b2777a0c08acf Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 17 Feb 2019 19:29:08 +0100 Subject: [PATCH] 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 --- include/scan.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2