aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libhtp
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/libhtp
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/libhtp')
-rwxr-xr-xprojects/libhtp/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/libhtp/build.sh b/projects/libhtp/build.sh
index 5b91b1b2..d15adbd7 100755
--- a/projects/libhtp/build.sh
+++ b/projects/libhtp/build.sh
@@ -23,7 +23,7 @@ make
$CC $CFLAGS -I. -c test/fuzz/fuzz_htp.c -o fuzz_htp.o
$CC $CFLAGS -I. -c test/test.c -o test.o
-$CXX $CXXFLAGS fuzz_htp.o test.o -o $OUT/fuzz_htp ./htp/.libs/libhtp.a -lFuzzingEngine -lz
+$CXX $CXXFLAGS fuzz_htp.o test.o -o $OUT/fuzz_htp ./htp/.libs/libhtp.a $LIB_FUZZING_ENGINE -lz
# builds corpus
zip -r $OUT/fuzz_htp_seed_corpus.zip test/files/*.t