summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorStephan Beyer <s-beyer@gmx.net>2008-07-18 01:04:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-19 18:17:42 (GMT)
commit78568448239ea09c8a78b72741863be1148c4660 (patch)
tree1bf4adb0a0fe2d55ab6bc7538e703c0b8f07a2fc /Makefile
parentbb3e4f03be815067814624b1e0b2f6de054519cd (diff)
downloadgit-78568448239ea09c8a78b72741863be1148c4660.zip
git-78568448239ea09c8a78b72741863be1148c4660.tar.gz
git-78568448239ea09c8a78b72741863be1148c4660.tar.bz2
Link git-shell only to a subset of libgit.a
Commit 5b8e6f85 introduced stubs for three functions that make no sense for git-shell. But those stubs defined libgit.a functions a second time so that a linker can complain. Now git-shell is only linked to a subset of libgit.a. Signed-off-by: Stephan Beyer <s-beyer@gmx.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 75c4ead..c01345e 100644
--- a/Makefile
+++ b/Makefile
@@ -1203,6 +1203,9 @@ git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
$(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
+git-shell$X: compat/strlcpy.o abspath.o ctype.o exec_cmd.o quote.o strbuf.o usage.o wrapper.o shell.o
+ $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^)
+
$(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
builtin-revert.o wt-status.o: wt-status.h