diff options
author | Mark H Weaver <mhw@netris.org> | 2018-04-12 03:36:19 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-04-12 04:02:46 -0400 |
commit | a4197ad29cd5b1b521fa7e7f332b6d8a171cb6d0 (patch) | |
tree | 744520b0625f731c18bfa7ce2a9bba6e966b92b7 /gnu | |
parent | 4a810e75aa5b67c38471ff20f7b4b7124d04449c (diff) | |
download | patches-a4197ad29cd5b1b521fa7e7f332b6d8a171cb6d0.tar patches-a4197ad29cd5b1b521fa7e7f332b6d8a171cb6d0.tar.gz |
gnu: serd: Return #t from all phases.
* gnu/packages/rdf.scm (serd)[arguments]: Return #t from the 'set-ldflags'
phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/rdf.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 4d8b1d1d88..88d31038b4 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -257,7 +257,8 @@ and triple stores.") (lambda* (#:key outputs #:allow-other-keys) (setenv "LDFLAGS" (string-append "-Wl,-rpath=" - (assoc-ref outputs "out") "/lib"))))))) + (assoc-ref outputs "out") "/lib")) + #t))))) (home-page "http://drobilla.net/software/serd/") (synopsis "Library for RDF syntax supporting Turtle and NTriples") (description |