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: https://git.lorimer.id.au/gitweb.git/diff_plain/900a5d075e8b48025439966dc3863189874bae3b?hp=--cc 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 --- 900a5d075e8b48025439966dc3863189874bae3b 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::