aboutsummaryrefslogtreecommitdiff
path: root/projects/flac
diff options
context:
space:
mode:
authorGuido Vranken <guidovranken@users.noreply.github.com>2019-08-18 16:57:03 +0200
committerAbhishek Arya <inferno@chromium.org>2019-08-18 07:57:03 -0700
commit2cb6fe00856608ea884c1d41e636aa965174291f (patch)
tree9d9be941212fc485479251ae1eefd3e361678d22 /projects/flac
parentb1992b5485fef255a5aa88b7bf07994309cfa3c6 (diff)
downloadoss-fuzz-2cb6fe00856608ea884c1d41e636aa965174291f.tar.gz
[FLAC] Fix coverage builds (#2719)
Diffstat (limited to 'projects/flac')
-rwxr-xr-xprojects/flac/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/flac/build.sh b/projects/flac/build.sh
index 1e715a31a..f4ef56345 100755
--- a/projects/flac/build.sh
+++ b/projects/flac/build.sh
@@ -42,9 +42,9 @@ cd $SRC/flac/
./autogen.sh
if [[ $CFLAGS = *sanitize=memory* ]]
then
- LD_LIBRARY_PATH="$SRC/libogg-install/lib" ./configure --with-ogg="$SRC/libogg-install" --enable-static --disable-asm-optimizations --disable-sse
+ LD_LIBRARY_PATH="$SRC/libogg-install/lib" ./configure --with-ogg="$SRC/libogg-install" --enable-static --disable-oggtest --disable-examples --disable-xmms-plugin --disable-asm-optimizations --disable-sse
else
- LD_LIBRARY_PATH="$SRC/libogg-install/lib" ./configure --with-ogg="$SRC/libogg-install" --enable-static
+ LD_LIBRARY_PATH="$SRC/libogg-install/lib" ./configure --with-ogg="$SRC/libogg-install" --enable-static --disable-oggtest --disable-examples --disable-xmms-plugin
fi
make -j$(nproc)