From c63aaff2adb83e5015841921fab233c2fe2e3b0a Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Sat, 10 Jan 2009 15:18:18 +0100 Subject: Makefile: avoid libcurl when building git We don't need support for fetching/pushing in libgit.a, hence we don't need to link with libcurl. Noticed-by: Robin Redeker Signed-off-by: Lars Hjemli --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2e51c31..a95a622 100644 --- a/Makefile +++ b/Makefile @@ -128,8 +128,8 @@ cgit.o: VERSION -include $(OBJECTS:.o=.d) libgit: - $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a - $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a + $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a + $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a test: all $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all -- cgit v1.2.3-59-g8ed1b