Skip to content

Commit b78f3f0

Browse files
committed
MISC: macbuild.sh: HLS doesn't work on macOS right now, skip make check
Signed-off-by: Stefan Westerfeld <[email protected]>
1 parent 15492fe commit b78f3f0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Diff for: misc/macbuild.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@ cmake .
1313
sudo make install
1414
cd ..
1515
export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH
16+
1617
# build audiowmark
1718
./autogen.sh
1819
NPROC=`sysctl -n hw.ncpu`
1920
make -j $NPROC
2021
make -j $NPROC check
21-
# build audiowmark with ffmpeg support
22+
23+
# test build audiowmark with ffmpeg support
2224
make clean
2325
./autogen.sh --with-ffmpeg
2426
make -j $NPROC
25-
make -j $NPROC check
27+
28+
### unfortunately HLS is currently broken on macOS, so although it builds, make check will fail
29+
###
30+
###make -j $NPROC check

0 commit comments

Comments
 (0)