a96be19bc3
Makefile.autotools.in automatically adds these to the configure invocation, so there's no need to explicitly list them. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
16 lines
367 B
Makefile
16 lines
367 B
Makefile
#############################################################
|
|
#
|
|
# 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,package,wget))
|