[zlib] Fix build.sh to overwrite seed corpus symlinks.

This commit is contained in:
Max Moroz 2019-04-04 12:54:37 -07:00
parent 6625401871
commit 2eaa543f82
1 changed files with 1 additions and 1 deletions

View File

@ -18,5 +18,5 @@ for f in $(find $SRC -name '*_fuzzer.c'); do
$CC $CFLAGS -I. $f -c -o /tmp/$b.o
$CXX $CXXFLAGS -o $OUT/$b /tmp/$b.o -stdlib=libc++ -lFuzzingEngine ./libz.a
rm -f /tmp/$b.o
ln -s $OUT/seed_corpus.zip $OUT/${b}_seed_corpus.zip
ln -sf $OUT/seed_corpus.zip $OUT/${b}_seed_corpus.zip
done