Added print in configure for debugging

This commit is contained in:
Anthony Scemama 2015-11-25 18:39:49 +01:00
parent e8d5738b76
commit 109e3946eb
1 changed files with 7 additions and 2 deletions

View File

@ -5,6 +5,11 @@ BUILD=_build/${TARGET}
rm -rf -- ${BUILD}
mkdir ${BUILD} || exit 1
tar -zxf Downloads/${TARGET}.tar.gz --strip-components=1 --directory=${BUILD} || exit 1
_install || exit 1
_install
if [[ $? -ne 0 ]]
then
cat _build/${TARGET}.log
exit 1
fi
rm -rf -- ${BUILD} _build/${TARGET}.log
exit 0
exit 0