Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2007-03-07 02:44:37 +0300
committerShawn O. Pearce <spearce@spearce.org>2007-03-07 03:08:46 +0300
commit0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d (patch)
treea0cf25da87b5816141b3fe114ecdfdd4fb59af5f
parent0b5ea163d21163343579cd6eb9274ccc2190a0fe (diff)
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>
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
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))