Merge pull request #122 from redboltz/add_install_test

Added 'make install' as a test target.
This commit is contained in:
Takatoshi Kondo 2014-09-09 10:14:24 +09:00
commit 6e77c6df11
2 changed files with 16 additions and 0 deletions

View File

@ -36,4 +36,12 @@ then
exit $ret
fi
make install DESTDIR=`pwd`/install
ret=$?
if [ $ret -ne 0 ]
then
exit $ret
fi
exit 0

View File

@ -45,4 +45,12 @@ then
exit $ret
fi
make install DESTDIR=`pwd`/install
ret=$?
if [ $ret -ne 0 ]
then
exit $ret
fi
exit 0