From: Alex Riesen Date: Tue, 6 Mar 2007 23:44:37 +0000 (+0100) Subject: git-gui: Support of "make -s" in: do not output anything of the build itself X-Git-Tag: gitgui-0.6.5~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d 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 --- 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))