From 773bcc7ccd52dc72114b293bba9dbca1e9ae054a Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 9 Oct 2014 13:27:16 +0200 Subject: building curl fetcher only if WITH_CURL=1 is set --- src/modules/fetcher/GNUmakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/modules/fetcher/GNUmakefile b/src/modules/fetcher/GNUmakefile index 6be8eaa..feb638c 100644 --- a/src/modules/fetcher/GNUmakefile +++ b/src/modules/fetcher/GNUmakefile @@ -1,6 +1,10 @@ TOPDIR = ../../.. -SUBDIRS = libfetch file libcurl +SUBDIRS = libfetch file + +ifeq ($(WITH_CURL),1) +SUBDIRS += libcurl +endif -include $(TOPDIR)/makefiles/gmake/sub.mk -- cgit v1.2.3-54-g00ecf