From 0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d Mon Sep 17 00:00:00 2001 From: Alex Riesen Date: Wed, 7 Mar 2007 00:44:37 +0100 Subject: [PATCH] git-gui: Support of "make -s" in: do not output anything of the build itself Signed-off-by: Alex Riesen Signed-off-by: Shawn O. Pearce --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e486e8f984..a219b5d476 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,11 @@ ifndef V QUIET_BUILT_IN = @echo ' ' BUILTIN $@; endif +ifeq ($(findstring $(MAKEFLAGS),s),s) +QUIET_GEN = +QUIET_BUILT_IN = +endif + DESTDIR_SQ = $(subst ','\'',$(DESTDIR)) gitexecdir_SQ = $(subst ','\'',$(gitexecdir)) SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) -- 2.11.4.GIT