Skip to content

Commit 27ebd6e

Browse files
author
Junio C Hamano
committed
Merge branch 'master' of git://repo.or.cz/git-gui
* 'master' of git://repo.or.cz/git-gui: git-gui: Support of "make -s" in: do not output anything of the build itself
2 parents 9550a9c + 2ec0cb7 commit 27ebd6e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

git-gui/Makefile

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

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

0 commit comments

Comments
 (0)