Update the `oss-fuzz` build instructions for ProFTPD, to match changes in the project's build. (#6220)

This commit is contained in:
TJ Saunders 2021-08-14 14:59:31 -07:00 committed by GitHub
parent 34de2bfce3
commit 486d261fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -34,9 +34,10 @@ find . -name "*.o" -exec ar rcs fuzz_lib.a {} \;
$NEW_CC_FLAG -c $SRC/fuzzer.c -o fuzzer.o
$CC $CXXFLAGS $LIB_FUZZING_ENGINE fuzzer.o -o $OUT/fuzzer \
src/scoreboard.o \
lib/prbase.a \
fuzz_lib.a \
-L/src/proftpd/lib \
-lsupp -lcrypt -pthread
-lcrypt -pthread
# Build seed corpus
cd $SRC