summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Tommi Virtanen <tv@eagain.net>2008-08-24 23:23:25 +0300
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-08-24 16:15:25 -0700
commit27a6ed492b3962d8214a196e57e8969ff9772249 (patch)
tree75cc7918d02bac4d3729369fd374bc7e1accdfb4
parentMerge branch 'jc/no-slim-shell' (diff)
downloadtgif-27a6ed492b3962d8214a196e57e8969ff9772249.tar.xz
Install git-shell in bindir, too
/etc/passwd shell field must be something execable, you can't enter "/usr/bin/git shell" there. git-shell must be present as a separate executable, or it is useless. Signed-off-by: Tommi Virtanen <tv@eagain.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ff71e6acd1..7a6cbb6f03 100644
--- a/Makefile
+++ b/Makefile
@@ -1359,7 +1359,7 @@ install: all
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
$(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
- $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X '$(DESTDIR_SQ)$(bindir_SQ)'
+ $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X git-shell$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