fix failing tests on Debian unstable
* tests/Makefile.am (ltsmin_modelcheck_LDADD): Add -lpthread as it seems Debian's libtool does not carries this dependency over from libspotltsmin.la. Also using $(LTLIBMULTITHREAD) does not work, because that would add -pthread which is currently ignored when linking shared libraries (because libtool adds -nostdlib for some reason).
This commit is contained in:
parent
8868bc67ba
commit
b1007a3d03
1 changed files with 2 additions and 1 deletions
|
|
@ -445,7 +445,8 @@ if USE_LTSMIN
|
|||
check_PROGRAMS += ltsmin/modelcheck
|
||||
|
||||
ltsmin_modelcheck_SOURCES = ltsmin/modelcheck.cc
|
||||
ltsmin_modelcheck_LDADD = $(top_builddir)/spot/ltsmin/libspotltsmin.la $(LDADD)
|
||||
ltsmin_modelcheck_LDADD = $(top_builddir)/spot/ltsmin/libspotltsmin.la \
|
||||
$(LDADD) -lpthread
|
||||
|
||||
check_SCRIPTS += ltsmin/defs
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue