From b41d8d3f0e1d53aaef21c2b0ac5603fe7f9205f1 Mon Sep 17 00:00:00 2001 From: Lukas Lalinsky Date: Thu, 11 Apr 2024 06:00:26 +0200 Subject: [PATCH] Try to fix mac build --- build-macos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-macos.sh b/build-macos.sh index ddd8366..0e75410 100755 --- a/build-macos.sh +++ b/build-macos.sh @@ -9,7 +9,7 @@ source common.sh if [ ! -e $FFMPEG_TARBALL ] then - curl -LO $FFMPEG_TARBALL_URL + curl -s -L -O $FFMPEG_TARBALL_URL fi : ${TARGET?} @@ -33,7 +33,7 @@ BUILD_DIR=$BASE_DIR/$(mktemp -d build.XXXXXXXX) trap 'rm -rf $BUILD_DIR' EXIT cd $BUILD_DIR -gzip -d $BASE_DIR/$FFMPEG_TARBALL | tar --strip-components=1 -xf - +tar --strip-components=1 -xf $BASE_DIR/$FFMPEG_TARBALL FFMPEG_CONFIGURE_FLAGS+=( --cc=/usr/bin/clang