aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2009-05-31 18:15:16 +0200
committerJunio C Hamano <gitster@pobox.com>2009-06-01 00:08:27 -0700
commit900a5d075e8b48025439966dc3863189874bae3b (patch)
tree89aabb8c1fb63e2fd63feec2fb2e5e6338a76551 /Makefile
parentf90cf2b9203e81e3a2b70b15480628e9189b7e60 (diff)
downloadgit-900a5d075e8b48025439966dc3863189874bae3b.tar.gz
git-900a5d075e8b48025439966dc3863189874bae3b.tar.xz
Quiet make: do not leave Windows behind
On Windows, we have to check whether there are scripts which would override .exe files, but this check missed the "quietification". Make now prints 'BUILTIN all' instead of a long chain of 'test || rm' commands. [spr: added clarification what make will print. ] Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Steffen Prohaska <prohaska@zib.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f63eaeae4..107015a59 100644
--- a/Makefile
+++ b/Makefile
@@ -1204,7 +1204,7 @@ SHELL = $(SHELL_PATH)
all:: shell_compatibility_test $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS) GIT-BUILD-OPTIONS
ifneq (,$X)
- $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), test '$p' -ef '$p$X' || $(RM) '$p';)
+ $(QUIET_BUILT_IN)$(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), test '$p' -ef '$p$X' || $(RM) '$p';)
endif
all::