rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit 3601fcbf6542ced640987bbde1ccb80ad2d62d33
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Fri Dec 3 23:57:24 2021 +0100
gnu: libbigwig: Replace reference to %outputs.
* gnu/packages/bioinformatics.scm (libbigwig)[arguments]: Replace reference
to
%outputs with a gexp.
---
gnu/packages/bioinformatics.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 62b92c8..ae555d0 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2958,8 +2958,8 @@ other types of unwanted sequence from high-throughput
sequencing reads.")
`(#:test-target "test"
#:tests? #f ; tests require access to the web
#:make-flags
- (list "CC=gcc"
- (string-append "prefix=" (assoc-ref %outputs "out")))
+ ,#~(list "CC=gcc"
+ (string-append "prefix=" #$output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))