summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-06-25 02:58:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-06-25 04:26:59 (GMT)
commit98db51e624f45bcfae0a183ce86e0c1f1814269e (patch)
treed45f7bf1a208852748aff8bb898823d279c844bd /Makefile
parentf28ac70f48aa36f0d6ea1cbaa967b56802549016 (diff)
downloadgit-98db51e624f45bcfae0a183ce86e0c1f1814269e.zip
git-98db51e624f45bcfae0a183ce86e0c1f1814269e.tar.gz
git-98db51e624f45bcfae0a183ce86e0c1f1814269e.tar.bz2
Keep some git-* programs in $(bindir)
Otherwise remote executions directly over ssh won't find them as they used to. --upload-pack and --receive-pack options _could_ be used on the client side, but things should keep working out-of-box for older clients. Later versions of clients (fetch-pack and send-pack) probably could start asking for these programs with dashless form, but that is a different topic. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 929136b..8534af2 100644
--- a/Makefile
+++ b/Makefile
@@ -1268,7 +1268,7 @@ install: all
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
$(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
- $(INSTALL) git$X '$(DESTDIR_SQ)$(bindir_SQ)'
+ $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X '$(DESTDIR_SQ)$(bindir_SQ)'
$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
$(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
ifndef NO_TCLTK