summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-07-11 03:17:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-07-11 03:17:33 (GMT)
commit6edd14968bf969a651d057ea7fb7757393d282bf (patch)
tree37175ae8b82a50fea3bd8305c2086ba32c99b78a /Makefile
parent4ecbc178704ca6c1027a38483e98f5fe493b1322 (diff)
downloadgit-6edd14968bf969a651d057ea7fb7757393d282bf.zip
git-6edd14968bf969a651d057ea7fb7757393d282bf.tar.gz
git-6edd14968bf969a651d057ea7fb7757393d282bf.tar.bz2
Makefile: keep "git" when bindir is execdir
For some reason there still are people who use the old style layout to put everything in $(bindir). The previous commit breaks the install for them, because it tries to unconditionally remove git from execdir and cp/ln from bindir --- oops. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 311ce7d..4be508e 100644
--- a/Makefile
+++ b/Makefile
@@ -1641,10 +1641,11 @@ ifneq (,$X)
endif
bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \
execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \
- { $(RM) "$$execdir/git$X" && \
+ { test "$$bindir/" = "$$execdir/" || \
+ { $(RM) "$$execdir/git$X" && \
test -z "$(NO_CROSS_DIRECTORY_HARDLINKS)" && \
ln "$$bindir/git$X" "$$execdir/git$X" 2>/dev/null || \
- cp "$$bindir/git$X" "$$execdir/git$X"; } && \
+ cp "$$bindir/git$X" "$$execdir/git$X"; } ; } && \
{ for p in $(BUILT_INS); do \
$(RM) "$$execdir/$$p" && \
ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \