Merge pull request #486 from evandroforks/hide_makefile_buildhash_verbosity

Hide the Makefile buildhash rule verbosity
This commit is contained in:
Damien Elmes 2020-03-02 16:28:59 +10:00 committed by GitHub
commit 74e33ffc75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; \