diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2007-03-07 00:44:37 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-03-06 19:08:46 -0500 |
commit | 0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d (patch) | |
tree | a0cf25da87b5816141b3fe114ecdfdd4fb59af5f /Makefile | |
parent | 0b5ea163d21163343579cd6eb9274ccc2190a0fe (diff) | |
download | git-0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d.tar.gz git-0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d.tar.xz |
git-gui: Support of "make -s" in: do not output anything of the build itself
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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)) |