From 30c490373b740f357d219c9e9672698d739f11f3 Mon Sep 17 00:00:00 2001 From: Tyson Smith Date: Fri, 17 Jan 2020 09:55:16 -0800 Subject: [PATCH 1/1] oss-fuzz: replace -lFuzzingEngine with $LIB_FUZZING_ENGINE Signed-off-by: Tristan Matthews --- contrib/oss-fuzz/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/oss-fuzz/build.sh b/contrib/oss-fuzz/build.sh index 29e7f38..1f76b4a 100755 --- a/contrib/oss-fuzz/build.sh +++ b/contrib/oss-fuzz/build.sh @@ -20,4 +20,4 @@ make clean make -j$(nproc) make install -$CXX $CXXFLAGS $SRC/vorbis/contrib/oss-fuzz/decode_fuzzer.cc -o $OUT/decode_fuzzer -L"$WORK/lib" -I"$WORK/include" -lFuzzingEngine -lvorbisfile -lvorbis -logg +$CXX $CXXFLAGS $SRC/vorbis/contrib/oss-fuzz/decode_fuzzer.cc -o $OUT/decode_fuzzer -L"$WORK/lib" -I"$WORK/include" $LIB_FUZZING_ENGINE -lvorbisfile -lvorbis -logg -- 2.7.4