rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit 2657bdc100a285d73b02a26a5fcaad80010b75f6
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sat Dec 4 19:41:18 2021 +0100
gnu: vcftools: Replace references to %outputs.
* gnu/packages/bioinformatics.scm (vcftools)[arguments]: Use gexp to remove
references to %outputs.
---
gnu/packages/bioinformatics.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index cc1e9f6..4fef438 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7623,11 +7623,11 @@ profiles, and associated taxonomic information.")
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no "check" target
- #:make-flags (list
- "CFLAGS=-O2" ; override "-m64" flag
- (string-append "PREFIX=" (assoc-ref %outputs "out"))
- (string-append "MANDIR=" (assoc-ref %outputs "out")
- "/share/man/man1"))))
+ #:make-flags
+ ,#~(list
+ "CFLAGS=-O2" ; override "-m64" flag
+ (string-append "PREFIX=" #$output)
+ (string-append "MANDIR=" #$output "/share/man/man1"))))
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs