mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: vcftools: Replace references to %outputs.
* gnu/packages/bioinformatics.scm (vcftools)[arguments]: Use gexp to remove references to %outputs.
This commit is contained in:
parent
eec1bdcd9e
commit
2657bdc100
1 changed files with 5 additions and 5 deletions
|
@ -7623,11 +7623,11 @@ profiles, and associated taxonomic information.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no "check" target
|
`(#:tests? #f ; no "check" target
|
||||||
#:make-flags (list
|
#:make-flags
|
||||||
"CFLAGS=-O2" ; override "-m64" flag
|
,#~(list
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
"CFLAGS=-O2" ; override "-m64" flag
|
||||||
(string-append "MANDIR=" (assoc-ref %outputs "out")
|
(string-append "PREFIX=" #$output)
|
||||||
"/share/man/man1"))))
|
(string-append "MANDIR=" #$output "/share/man/man1"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue