[ClamAV] Build script fix (#2105)

Correction to build.sh script so the script won't fail on clean checkout.
This commit is contained in:
Micah Snyder 2019-01-23 17:04:47 -05:00 committed by Max Moroz
parent 624693035b
commit eeb5d8fa15
1 changed files with 1 additions and 1 deletions

View File

@ -18,8 +18,8 @@
#
# Build the library.
#
rm -rf ${WORK}/build
mkdir -p ${WORK}/build
rm -r ${WORK}/build/*
cd ${WORK}/build
${SRC}/clamav-devel/configure --enable-fuzz=yes --with-libjson=no --with-pcre=no --enable-static=yes --enable-shared=no --disable-llvm --host=x86_64-unknown-linux-gnu
make clean