mirror of https://github.com/google/oss-fuzz.git
sleuthkit: disable error on warnings to fix build (#7148)
This commit is contained in:
parent
621e3dcb0a
commit
abae88cc07
|
@ -18,6 +18,10 @@
|
|||
export CFLAGS="$CFLAGS -Wno-error=non-c-typedef-for-linkage"
|
||||
export CXXFLAGS="$CXXFLAGS -Wno-error=non-c-typedef-for-linkage"
|
||||
|
||||
# Disable error on all warnings
|
||||
sed -i 's/-Werror//g' ./tsk/util/Makefile.am
|
||||
sed -i 's/-Werror//g' ./tsk/pool/Makefile.am
|
||||
|
||||
# Dont fail if some of the seed downloads fail.
|
||||
${SRC}/buildcorpus.sh || true
|
||||
|
||||
|
|
Loading…
Reference in New Issue