From edf7c2476f6c8dcc6a9f5a1dbcfbcdc59104f462 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 24 Aug 2014 21:23:11 +0200 Subject: [PATCH] build: Make tarball commands quiet. There is no need to print all commands, unless V=1 is given to make. --- Makefile.real | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.real b/Makefile.real index 6bdbc71d..79d14233 100644 --- a/Makefile.real +++ b/Makefile.real @@ -304,13 +304,13 @@ install: all man $(MKDIR_P) $(VARDIR) >/dev/null 2>&1 || true # not fatal, so don't complain $(tarball): - rm -rf $(tarball) $(tarball_pfx) - git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \ + $(Q) rm -rf $(tarball) $(tarball_pfx) + $(Q) git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \ | tar --delete $(tarball_delete) > $(tarball_pfx).tar - $(MKDIR_P) $(tarball_pfx) - ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION - cp -r $(autocrap) $(tarball_pfx) - tar rf $(tarball_pfx).tar $(tarball_pfx)/* - bzip2 -9 $(tarball_pfx).tar - ls -l $(tarball) - rm -rf $(tarball_pfx) + $(Q) $(MKDIR_P) $(tarball_pfx) + $(Q) ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION + $(Q) cp -r $(autocrap) $(tarball_pfx) + $(Q) tar rf $(tarball_pfx).tar $(tarball_pfx)/* + $(Q) bzip2 -9 $(tarball_pfx).tar + $(Q) ls -l $(tarball) + $(Q) rm -rf $(tarball_pfx) -- 2.39.2