]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
- add --no-check-certificate option to wget, pointed out by @esyr
authorsashan <anedvedicky@gmail.com>
Mon, 4 Aug 2025 07:32:51 +0000 (09:32 +0200)
committerNeil Horman <nhorman@openssl.org>
Sat, 9 Aug 2025 13:38:39 +0000 (09:38 -0400)
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/28136)

test/recipes/95-test_external_rpki-client-portable_data/rpki-client-portable.sh

index c86217b18ae7a42f7938e38454e8cac22afafe99..d3454940b698141bcc088989f5b677523374196f 100755 (executable)
@@ -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" \