From 111978d42dc6310d3d8ff3c34330d6cac0019c54 Mon Sep 17 00:00:00 2001 From: sashan Date: Mon, 4 Aug 2025 09:32:51 +0200 Subject: [PATCH] - add --no-check-certificate option to wget, pointed out by @esyr Reviewed-by: Neil Horman Reviewed-by: Tim Hudson Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/28136) --- .../rpki-client-portable.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/recipes/95-test_external_rpki-client-portable_data/rpki-client-portable.sh b/test/recipes/95-test_external_rpki-client-portable_data/rpki-client-portable.sh index c86217b18a..d3454940b6 100755 --- a/test/recipes/95-test_external_rpki-client-portable_data/rpki-client-portable.sh +++ b/test/recipes/95-test_external_rpki-client-portable_data/rpki-client-portable.sh @@ -11,7 +11,8 @@ LDFLAGS="-L`pwd`/$BLDTOP -Wl,-rpath,`pwd`/$BLDTOP" CFLAGS="-I`pwd`/$BLDTOP/include -I`pwd`/$SRCTOP/include" -wget -O $RPKI_TARBALL $RPKI_DOWNLOAD_URL && tar xzf $RPKI_TARBALL +WGET_OPTS='--no-check-certificate' +wget $WGET_OPTS -O $RPKI_TARBALL $RPKI_DOWNLOAD_URL && tar xzf $RPKI_TARBALL cd $RPKI_SRC ./configure --with-openssl-cflags="$CFLAGS" --with-openssl-ldflags="$LDFLAGS" \ -- 2.47.2