mirror of https://github.com/google/oss-fuzz.git
zeek: Fix installation of filesystem module (#8043)
This commit is contained in:
parent
c50e257afb
commit
71f4c01843
|
@ -82,4 +82,11 @@ if [ "${SANITIZER}" = "coverage" ]; then
|
|||
# causing the coverage build to fail.
|
||||
mkdir -p $OUT/$(basename $SRC)
|
||||
cp -r $SRC/zeek $OUT/$(basename $SRC)/zeek
|
||||
|
||||
# Replace the 3rdpary/ghc symlink in the ./build directory with the
|
||||
# actual contents. The symlink otherwise points into the /src directory.
|
||||
if [ -L ${OUT}/$(basename $SRC)/zeek/build/zeek/3rdparty/ghc ]; then
|
||||
rm ${OUT}/$(basename $SRC)/zeek/build/zeek/3rdparty/ghc
|
||||
cp -r $SRC/zeek/auxil/filesystem/include/ghc ${OUT}/$(basename $SRC)/zeek/build/zeek/3rdparty/
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue