mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 13:17:10 -05:00
gnu: plink-ng: Replace reference to %outputs.
* gnu/packages/bioinformatics.scm (plink-ng)[arguments]: Remove reference to %outputs by using a gexp.
This commit is contained in:
parent
88bb81b515
commit
e28b8a9cea
1 changed files with 8 additions and 7 deletions
|
@ -6773,12 +6773,13 @@ (define-public plink-ng
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ;no "check" target
|
||||
#:make-flags (list "BLASFLAGS=-llapack -lopenblas"
|
||||
#:make-flags
|
||||
,#~(list "BLASFLAGS=-llapack -lopenblas"
|
||||
"CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
|
||||
"ZLIB=-lz"
|
||||
"BIN=plink prettify"
|
||||
(string-append "CC=" ,(cc-for-target))
|
||||
(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||
(string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output)
|
||||
"DESTDIR=")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue