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: v1.5.1-rc1~41^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0c3b4aac8ec;p=thirdparty%2Fgit.git 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))