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:
Ricardo Wurmus 2021-12-04 15:35:28 +01:00
parent 88bb81b515
commit e28b8a9cea
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6773,13 +6773,14 @@ (define-public plink-ng
(build-system gnu-build-system)
(arguments
`(#:tests? #f ;no "check" target
#: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"))
"DESTDIR=")
#: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=" #$output)
"DESTDIR=")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir