Remove make_check.sh

This commit is contained in:
Peng Wu 2020-10-10 14:54:13 +08:00
parent 84ba431af1
commit 6cb240e9a7

View File

@ -1,15 +0,0 @@
#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
cd $1
./configure --prefix=/usr
check_return_value $?
make check
exit $?