mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: libtocc: Help the tests find libtocc.so.
* gnu/packages/search.scm (libtocc)[arguments] <check>: Pass -Wl,-rpath=../src/.libs for the tests.
This commit is contained in:
parent
4836989a69
commit
e91d1d3133
1 changed files with 3 additions and 1 deletions
|
@ -88,7 +88,9 @@ (define-public libtocc
|
||||||
(string-append "SHELL="
|
(string-append "SHELL="
|
||||||
(which "sh"))
|
(which "sh"))
|
||||||
"CPPFLAGS=-I../src"
|
"CPPFLAGS=-I../src"
|
||||||
"LDFLAGS=-L../src/.libs"))
|
(string-append
|
||||||
|
"LDFLAGS=-L../src/.libs "
|
||||||
|
"-Wl,-rpath=../src/.libs")))
|
||||||
(zero? (system* "make"))
|
(zero? (system* "make"))
|
||||||
(zero? (system* "./libtocctests")))))))))
|
(zero? (system* "./libtocctests")))))))))
|
||||||
(home-page "http://t-o-c-c.com/")
|
(home-page "http://t-o-c-c.com/")
|
||||||
|
|
Loading…
Reference in a new issue