diff options
author | Lars Hjemli | 2009-01-10 15:18:18 +0100 |
---|---|---|
committer | Lars Hjemli | 2009-01-10 15:18:18 +0100 |
commit | c63aaff2adb83e5015841921fab233c2fe2e3b0a (patch) | |
tree | eeb62508fa174015533a3798f496eaa2ee8e580a /Makefile | |
parent | f3c99cf1cee25ae95ffea6188b40734e877bce20 (diff) | |
download | cgit-c63aaff2adb83e5015841921fab233c2fe2e3b0a.tar.gz cgit-c63aaff2adb83e5015841921fab233c2fe2e3b0a.tar.bz2 cgit-c63aaff2adb83e5015841921fab233c2fe2e3b0a.zip |
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 <elmex@ta-sa.org>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,8 +128,8 @@ cgit.o: VERSION | |||
128 | -include $(OBJECTS:.o=.d) | 128 | -include $(OBJECTS:.o=.d) |
129 | 129 | ||
130 | libgit: | 130 | libgit: |
131 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | 131 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a |
132 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a | 132 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a |
133 | 133 | ||
134 | test: all | 134 | test: all |
135 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 135 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |