diff options
author | Tommi Virtanen <tv@eagain.net> | 2008-08-24 23:23:25 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-24 16:15:25 -0700 |
commit | 27a6ed492b3962d8214a196e57e8969ff9772249 (patch) | |
tree | 75cc7918d02bac4d3729369fd374bc7e1accdfb4 /Makefile | |
parent | Merge branch 'jc/no-slim-shell' (diff) | |
download | tgif-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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |