Skip to content

Commit b41d8d3

Browse files
committed
Try to fix mac build
1 parent 019e3f7 commit b41d8d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-macos.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source common.sh
99

1010
if [ ! -e $FFMPEG_TARBALL ]
1111
then
12-
curl -LO $FFMPEG_TARBALL_URL
12+
curl -s -L -O $FFMPEG_TARBALL_URL
1313
fi
1414

1515
: ${TARGET?}
@@ -33,7 +33,7 @@ BUILD_DIR=$BASE_DIR/$(mktemp -d build.XXXXXXXX)
3333
trap 'rm -rf $BUILD_DIR' EXIT
3434

3535
cd $BUILD_DIR
36-
gzip -d $BASE_DIR/$FFMPEG_TARBALL | tar --strip-components=1 -xf -
36+
tar --strip-components=1 -xf $BASE_DIR/$FFMPEG_TARBALL
3737

3838
FFMPEG_CONFIGURE_FLAGS+=(
3939
--cc=/usr/bin/clang

0 commit comments

Comments
 (0)