Merge branch 'master' of git://repo.or.cz/git-gui
authorJunio C Hamano <junkio@cox.net>
Tue, 13 Mar 2007 06:14:07 +0000 (23:14 -0700)
committerJunio C Hamano <junkio@cox.net>
Tue, 13 Mar 2007 06:14:07 +0000 (23:14 -0700)
* 'master' of git://repo.or.cz/git-gui:
git-gui: Support of "make -s" in: do not output anything of the build itself

git-gui/Makefile
index d74fca287437d39eb193aed356e9a68f89480fd1..b82789ead6255b33be0f1ed2029a91611cea3072 100644 (file)
@@ -28,6 +28,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))