build-style/configure.sh: use "make check" if available.

This commit is contained in:
Leah Neukirchen 2017-11-20 13:26:07 +01:00
parent c8e8f4276b
commit 6caa3ad3be

View file

@ -14,6 +14,24 @@ do_build() {
${make_cmd} ${makejobs} ${make_build_args} ${make_build_target}
}
do_check() {
if [ -z "$make_cmd" ] && [ -z "$make_check_target" ]; then
if make -q check 2>/dev/null; then
:
else
if [ $? -eq 2 ]; then
msg_warn 'No target to "make check".\n'
return 0
fi
fi
fi
: ${make_cmd:=make}
: ${make_check_target:=check}
${make_cmd} ${make_check_args} ${make_check_target}
}
do_install() {
: ${make_cmd:=make}
: ${make_install_target:=install}