mhw pushed a commit to branch core-updates
in repository guix.
commit d582d925e5467b0df808656b6ba7391376d9d114
Author: Mark H Weaver <[email protected]>
Date: Thu Apr 12 03:38:04 2018 -0400
gnu: lilv: Return #t from all phases.
* gnu/packages/audio.scm (lilv)[arguments]: Return #t from the 'set-ldflags'
phase.
---
gnu/packages/audio.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index ad20e0e..df12020 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1733,7 +1733,8 @@ included are the command line utilities @code{send_osc}
and @code{dump_osc}.")
(lambda* (#:key outputs #:allow-other-keys)
(setenv "LDFLAGS"
(string-append "-Wl,-rpath="
- (assoc-ref outputs "out") "/lib")))))))
+ (assoc-ref outputs "out") "/lib"))
+ #t)))))
;; required by lilv-0.pc
(propagated-inputs
`(("serd" ,serd)