aboutsummaryrefslogtreecommitdiff
path: root/projects/libvpx
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2019-05-01 11:09:55 -0400
committerGitHub <noreply@github.com>2019-05-01 11:09:55 -0400
commit3049c50d48a8e712889104db25113c2b0be00301 (patch)
treeb1ed868d18b8701642006fbc68e7aa80f23b5d02 /projects/libvpx
parent22f5e3e0b8c6a865289df088a1b86e2165cf135b (diff)
downloadoss-fuzz-3049c50d48a8e712889104db25113c2b0be00301.tar.gz
Migrate projects using -lFuzzingEngine to $LIB_FUZZING_ENGINE (#2325)
Migrate from -lFuzzingEngine to $LIB_FUZZING_ENGINE where possible and not causing breakage
Diffstat (limited to 'projects/libvpx')
-rwxr-xr-xprojects/libvpx/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/libvpx/build.sh b/projects/libvpx/build.sh
index 9fd89c7e9..3f6559d2a 100755
--- a/projects/libvpx/build.sh
+++ b/projects/libvpx/build.sh
@@ -53,7 +53,7 @@ for decoder in "${fuzzer_decoders[@]}"; do
-I$SRC/libvpx \
-I${build_dir} \
-Wl,--start-group \
- -lFuzzingEngine \
+ $LIB_FUZZING_ENGINE \
$SRC/libvpx/examples/${fuzzer_src_name}.cc -o $OUT/${fuzzer_name} \
${build_dir}/libvpx.a \
-Wl,--end-group