Re: make check-exec-image failure
Karsten Poeck <[email protected]>
| Newsgroups | gmane.lisp.clisp.devel |
|---|---|
| Message-ID | <[email protected]> |
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
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
clisp-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/clisp-devel