Link instead of copy

This commit is contained in:
Tim Angus 2014-08-27 17:13:27 +01:00
parent 19ee6a86eb
commit 4646115f03
1 changed files with 5 additions and 7 deletions

View File

@ -28,19 +28,17 @@ else
fi
if [ -n "${CPPCHECK}" ]; then
if [ -e "${CPPCHECK}" ]; then
# Copy the existing output
BASENAME_CPPCHECK=`basename ${CPPCHECK}`
cp ${CPPCHECK} ./${BASENAME_CPPCHECK}
else
CHECK_CPPCHECK=`command -v cppcheck >/dev/null`
if [ ! -f "${CPPCHECK}" ]; then
command -v cppcheck >/dev/null
if [ "$?" != "0" ]; then
echo "cppcheck not installed"
exit 1
fi
cppcheck --enable=all --max-configs=1 --xml --xml-version=2 ./code 2> ${CPPCHECK}
cppcheck --enable=all --max-configs=1 --xml --xml-version=2 code 2> ${CPPCHECK}
fi
ln -s ${CPPCHECK} cppcheck.xml
fi
make -j${CORES} distclean ${BUILD_TYPE}