From b3d074a4807bd0fadd7af41555c4f29b1159dcd7 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 13 Sep 2022 20:44:47 +1000 Subject: [PATCH] CI: Disable brotili in Mac curl build --- scripts/build-dependencies-mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-dependencies-mac.sh b/scripts/build-dependencies-mac.sh index b332c4a47..e7037ad24 100755 --- a/scripts/build-dependencies-mac.sh +++ b/scripts/build-dependencies-mac.sh @@ -96,7 +96,7 @@ tar xf "curl-$CURL.tar.gz" cd "curl-$CURL" mkdir build-x64 cd build-x64 -../configure --prefix "$INSTALLDIR" --with-secure-transport +../configure --prefix "$INSTALLDIR" --with-secure-transport --without-brotli make "-j$NPROCS" make install cd ..