blob: c34a51c42b0c034eb964f8d88457931deeb9b20e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#############################################################
#
# wget
#
#############################################################
WGET_VERSION = 1.12
WGET_SITE = $(BR2_GNU_MIRROR)/wget
ifeq ($(BR2_PACKAGE_OPENSSL),y)
WGET_CONF_OPT += --with-ssl --with-libssl-prefix=$(STAGING_DIR)
WGET_DEPENDENCIES += openssl
endif
$(eval $(call AUTOTARGETS))
|