From 4a62396e2cd867578ca0d275789fda3f323abdb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Sat, 9 Dec 2023 14:28:02 +0100 Subject: [PATCH] [wget] Fix nettle build (#11344) Add `--disable-openssl` configure flag to nettle build. --- projects/wget/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/wget/build.sh b/projects/wget/build.sh index 11a089d37..83e81b065 100755 --- a/projects/wget/build.sh +++ b/projects/wget/build.sh @@ -51,7 +51,7 @@ fi # instead. cd $SRC/nettle bash .bootstrap -./configure --enable-mini-gmp --enable-static --disable-shared --disable-documentation --prefix=$WGET_DEPS_PATH $NETTLE_CONFIGURE_FLAGS --cache-file ../config.cache +./configure --enable-mini-gmp --enable-static --disable-shared --disable-documentation --disable-openssl --prefix=$WGET_DEPS_PATH $NETTLE_CONFIGURE_FLAGS --cache-file ../config.cache ( make -j$(nproc) || make -j$(nproc) ) && make install if test $? != 0;then echo "Failed to compile nettle"