The `make clean` can fail when there is no target at all

This commit is contained in:
Laurent Rineau 2015-07-15 16:36:19 +02:00
parent bc0c30bbfd
commit 32a3f4b60b
3 changed files with 3 additions and 3 deletions

View File

@ -180,6 +180,6 @@ fi
#
if [ -n "${NEED_CLEAN}" ]; then
if ! ( uname | grep -q "CYGWIN" ) ; then
${MAKE_CMD} -fMakefile clean
${MAKE_CMD} -fMakefile clean || true
fi
fi

View File

@ -149,6 +149,6 @@ fi
#
if [ -n "${NEED_CLEAN}" ]; then
if ! ( uname | grep -q "CYGWIN" ) ; then
${MAKE_CMD} -fMakefile clean
${MAKE_CMD} -fMakefile clean || true
fi
fi

View File

@ -182,6 +182,6 @@ fi
#
if [ -n "${NEED_CLEAN}" ]; then
if ! ( uname | grep -q "CYGWIN" ) ; then
${MAKE_CMD} -fMakefile clean
${MAKE_CMD} -fMakefile clean || true
fi
fi