summaryrefslogtreecommitdiffstats
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 09:08:27 +0200
commit900a5d075e8b48025439966dc3863189874bae3b (patch)
tree89aabb8c1fb63e2fd63feec2fb2e5e6338a76551
parentMinGW: GCC >= 4 does not need SNPRINTF_SIZE_CORR anymore (diff)
downloadgit-900a5d075e8b48025439966dc3863189874bae3b.tar.xz
git-900a5d075e8b48025439966dc3863189874bae3b.zip
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>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f63eaeae4f..107015a598 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::