aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Ralphson <mike@abacus.co.uk>2009-08-06 14:14:45 +0100
committerJunio C Hamano <gitster@pobox.com>2009-08-06 13:39:35 -0700
commitae209bd34914c05d141030b3affcf276f07e2490 (patch)
tree72a83873032b6f3c4ae7766272e3957b58814b77 /Makefile
parentf395cd06755c7563df7d0a0408807199c3f60635 (diff)
downloadgit-ae209bd34914c05d141030b3affcf276f07e2490.tar.gz
git-ae209bd34914c05d141030b3affcf276f07e2490.tar.xz
http-fetch: Fix Makefile dependancies
Specify git-http-fetch's dependancies explicitly rather than inheriting from git-http-push, as that may not be built if the libcurl version is too old or NO_EXPAT is defined Signed-off-by: Mike Ralphson <mike@abacus.co.uk> 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 0ebf9dd95..2900057fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1487,7 +1487,7 @@ http.o http-walker.o http-push.o: http.h
http.o http-walker.o: $(LIB_H)
-git-http-fetch$X: revision.o http.o http-push.o $(GITLIBS)
+git-http-fetch$X: revision.o http.o http-walker.o http-fetch.o $(GITLIBS)
$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
$(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
git-http-push$X: revision.o http.o http-push.o $(GITLIBS)