From: Eric Blake Date: Fri, 15 Aug 2008 15:01:03 +0000 (+0000) Subject: Makefile: building git in cygwin 1.7.0 X-Git-Tag: v1.6.0~10 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0d768f7;p=git.git Makefile: building git in cygwin 1.7.0 On platforms with $X, make removes any leftover scripts 'a' from earlier builds if a new binary 'a.exe' is now built. However, on cygwin 1.7.0, 'git' and 'git.exe' now consistently name the same file. Test for file equality before attempting a remove, in order to avoid nuking just-built binaries. Signed-off-by: Eric Blake Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 90c5a131b..53ab4b553 100644 --- a/Makefile +++ b/Makefile @@ -1064,7 +1064,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)), $(RM) '$p';) + $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), test '$p' -ef '$p$X' || $(RM) '$p';) endif all::