gnu: vcftools: Replace references to %outputs.

* gnu/packages/bioinformatics.scm (vcftools)[arguments]: Use gexp to remove
references to %outputs.
This commit is contained in:
Ricardo Wurmus 2021-12-04 19:41:18 +01:00
parent eec1bdcd9e
commit 2657bdc100
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -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