From 598897e82bcc6043a46a0692517926be1a79ad62 Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Sun, 1 Mar 2020 22:35:25 -0300 Subject: [PATCH] Hide the Makefile buildhash rule verbosity --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d80a94f4c..19827cd68 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ pyenv: # update build hash .PHONY: buildhash buildhash: - oldhash=$$(test -f meta/buildhash && cat meta/buildhash || true); \ + @oldhash=$$(test -f meta/buildhash && cat meta/buildhash || true); \ newhash=$$(git rev-parse --short=8 HEAD || echo dev); \ if [ "$$oldhash" != "$$newhash" ]; then \ echo $$newhash > meta/buildhash; \