libpinyin/tests/make_check.sh
2023-07-18 12:00:15 +02:00

18 lines
240 B
Bash

#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
cd $1
./configure --prefix=/usr --with-dbm=KyotoCabinet --enable-libzhuyin
check_return_value $?
make
check_return_value $?
make check
exit $?