From b0fc0a811ba198288a3aef8413466d9a61d1dfd4 Mon Sep 17 00:00:00 2001 From: Peter Seiderer Date: Fri, 18 Mar 2022 21:20:41 +0100 Subject: [PATCH] package/wget: use explicit --with/without-libuuid option This has been like tht for ages (probably an implicit dependency check in older versions), but now wget has explicit flags, so let's use them. Signed-off-by: Peter Seiderer [yann.morin.1998@free.fr: expand commit log] Signed-off-by: Yann E. MORIN --- package/wget/wget.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/wget/wget.mk b/package/wget/wget.mk index f30fa39917..58e04e3040 100644 --- a/package/wget/wget.mk +++ b/package/wget/wget.mk @@ -34,7 +34,10 @@ WGET_CONF_OPTS += --without-libidn endif ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y) +WGET_CONF_OPTS += --with-libuuid WGET_DEPENDENCIES += util-linux +else +WGET_CONF_OPTS += --without-libuuid endif ifeq ($(BR2_PACKAGE_ZLIB),y)