From: sashan Date: Mon, 4 Aug 2025 07:32:51 +0000 (+0200) Subject: - add --no-check-certificate option to wget, pointed out by @esyr X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=111978d42dc6310d3d8ff3c34330d6cac0019c54;p=thirdparty%2Fopenssl.git - 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) --- 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" \