Skip to content

Commit 0c3b4aa

Browse files
raalkmlspearce
authored andcommitted
git-gui: Support of "make -s" in: do not output anything of the build itself
Signed-off-by: Alex Riesen <[email protected]> Signed-off-by: Shawn O. Pearce <[email protected]>
1 parent 0b5ea16 commit 0c3b4aa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ ifndef V
2727
QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
2828
endif
2929

30+
ifeq ($(findstring $(MAKEFLAGS),s),s)
31+
QUIET_GEN =
32+
QUIET_BUILT_IN =
33+
endif
34+
3035
DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
3136
gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
3237
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))

0 commit comments

Comments
 (0)