From 157e99a08eb0b0a696eb5e8521335591325fe5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ya=C4=9F=C4=B1z=20Zengin?= Date: Fri, 2 Aug 2024 18:05:47 +0300 Subject: [PATCH] pmt: utils: run commands silently --- build/util/utils.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/util/utils.mk b/build/util/utils.mk index bc198a3..adaac35 100755 --- a/build/util/utils.mk +++ b/build/util/utils.mk @@ -16,8 +16,8 @@ # generate any text based empty file. Usage: $(call touch,) define touch - $(hide)[ ! "$(FORCE_GEN)" = "true" ] || rm -f "$1" - $(hide)touch "$1" || exit 1 + @ [ ! "$(FORCE_GEN)" = "true" ] || rm -f "$1" + @ touch "$1" || exit 1 endef # copy files. Usage: $(call copy,,)