mirror of https://github.com/google/oss-fuzz.git
[wget] Fix nettle build (#11344)
Add `--disable-openssl` configure flag to nettle build.
This commit is contained in:
parent
e5bc945b69
commit
4a62396e2c
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue