From: Johannes Schindelin Date: Sun, 31 May 2009 16:15:16 +0000 (+0200) Subject: Quiet make: do not leave Windows behind X-Git-Tag: v1.6.4-rc0~63^2~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=900a5d075e8b48025439966dc3863189874bae3b;p=git.git 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 Signed-off-by: Steffen Prohaska Signed-off-by: Junio C Hamano --- 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::