Skip to content

Commit

Permalink
Try to fix mac build
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Apr 11, 2024
1 parent 019e3f7 commit b41d8d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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?}
Expand All @@ -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
Expand Down

0 comments on commit b41d8d3

Please sign in to comment.