|
From: Karsten P. <Kar...@gm...> - 2017-03-13 20:38:32
|
On 13.03.17 01:12, Bruno Haible wrote:
> But what I need is that "make check" does not abort prematurely, because
> a "make check" failure means - to everyone - "the package is broken, you
> should better not proceed with 'make install'".
While the issue with check-exec-image is being discussed (and the
discussion is outside of my skillset) can't you do something like the
following in src/makemake.in
# don’t run check-exec-image on Darwin
# CHECK_DEPS="check-recompile check-fresh-line check-script
check-exec-image check-tests"
case "$host_os" in
darwin* )
CHECK_DEPS="check-recompile check-fresh-line check-script
check-tests"
;;
* )
CHECK_DEPS="check-recompile check-fresh-line check-script
check-exec-image check-tests"
;;
esac
Works at least for me, don't know how others check result
Karsten
|