diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-08-19 18:05:43 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-20 01:36:10 -0700 |
commit | daa0cc9a92c9c2c714aa5f7da6d0ff65b93e0698 (patch) | |
tree | f81442a41f7bbd496be466120a878434c68aab23 /Makefile | |
parent | 4cfc24afc9ffa4d3f1623be8990eea118e82d4fd (diff) | |
download | git-daa0cc9a92c9c2c714aa5f7da6d0ff65b93e0698.tar.gz git-daa0cc9a92c9c2c714aa5f7da6d0ff65b93e0698.tar.xz |
Build-in "git-shell"
This trivially makes "git-shell" a built-in. It makes the executable even
fatter, though.
And MinGW removed git-shell only because of the funny dependencies; there
is no reason to do so anymore.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Tested-on-MinGW-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -546,6 +546,7 @@ BUILTIN_OBJS += builtin-rev-parse.o BUILTIN_OBJS += builtin-revert.o BUILTIN_OBJS += builtin-rm.o BUILTIN_OBJS += builtin-send-pack.o +BUILTIN_OBJS += builtin-shell.o BUILTIN_OBJS += builtin-shortlog.o BUILTIN_OBJS += builtin-show-branch.o BUILTIN_OBJS += builtin-show-ref.o @@ -821,7 +822,6 @@ EXTLIBS += -lz ifndef NO_POSIX_ONLY_PROGRAMS PROGRAMS += git-daemon$X PROGRAMS += git-imap-send$X - PROGRAMS += git-shell$X endif ifndef NO_OPENSSL OPENSSL_LIBSSL = -lssl |