diff options
author | Jeff King <peff@peff.net> | 2009-08-07 00:21:33 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-07 11:41:01 -0700 |
commit | 17fd9f571f5596b0e69e143bf6d72a19c780dd25 (patch) | |
tree | fe33252a1f5a6a841eadc9a79bb7efd749f48e0d /Makefile | |
parent | ae209bd34914c05d141030b3affcf276f07e2490 (diff) | |
download | git-17fd9f571f5596b0e69e143bf6d72a19c780dd25.tar.gz git-17fd9f571f5596b0e69e143bf6d72a19c780dd25.tar.xz |
Makefile: git-http-fetch does not need expat
This appears to be a bad cut-and-paste in commit 1088261f.
Signed-off-by: Jeff King <peff@peff.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
@@ -1489,7 +1489,7 @@ http.o http-walker.o: $(LIB_H) 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) + $(LIBS) $(CURL_LIBCURL) 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) |