aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/harfbuzz/build.sh
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2019-05-01 11:09:55 -0400
committerGravatar GitHub <noreply@github.com>2019-05-01 11:09:55 -0400
commit3049c50d48a8e712889104db25113c2b0be00301 (patch)
treeb1ed868d18b8701642006fbc68e7aa80f23b5d02 /projects/harfbuzz/build.sh
parent22f5e3e0b8c6a865289df088a1b86e2165cf135b (diff)
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/harfbuzz/build.sh')
-rwxr-xr-xprojects/harfbuzz/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/harfbuzz/build.sh b/projects/harfbuzz/build.sh
index ad15ecb0..74c4f7d6 100755
--- a/projects/harfbuzz/build.sh
+++ b/projects/harfbuzz/build.sh
@@ -29,11 +29,11 @@ make -j$(nproc) CPPFLAGS="-DHB_NO_VISIBILITY" V=1 all
# Build the fuzzer.
$CXX $CXXFLAGS -std=c++11 -Isrc \
./test/fuzzing/hb-shape-fuzzer.cc -o $OUT/hb-shape-fuzzer \
- -lFuzzingEngine ./src/.libs/libharfbuzz.a
+ $LIB_FUZZING_ENGINE ./src/.libs/libharfbuzz.a
$CXX $CXXFLAGS -std=c++11 -Isrc \
./test/fuzzing/hb-subset-fuzzer.cc -o $OUT/hb-subset-fuzzer \
- -lFuzzingEngine ./src/.libs/libharfbuzz-subset.a ./src/.libs/libharfbuzz.a
+ $LIB_FUZZING_ENGINE ./src/.libs/libharfbuzz-subset.a ./src/.libs/libharfbuzz.a
# Archive and copy to $OUT seed corpus if the build succeeded.
mkdir all-fonts