mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Link instead of copy
This commit is contained in:
parent
19ee6a86eb
commit
4646115f03
1 changed files with 5 additions and 7 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue