10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 11:25:26 +02:00

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

View File

@ -5,6 +5,11 @@ BUILD=_build/${TARGET}
rm -rf -- ${BUILD} rm -rf -- ${BUILD}
mkdir ${BUILD} || exit 1 mkdir ${BUILD} || exit 1
tar -zxf Downloads/${TARGET}.tar.gz --strip-components=1 --directory=${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 rm -rf -- ${BUILD} _build/${TARGET}.log
exit 0 exit 0