me
/
guix
Archived
1
0
Fork 0

gnu: intervaltree: Remove reference to %outputs.

* gnu/packages/bioinformatics.scm (intervaltree)[arguments]: Remove reference
to %outputs by using a gexp.
master
Ricardo Wurmus 2021-12-05 12:47:40 +01:00
parent c9892edceb
commit b798d90bee
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 3 additions and 3 deletions

View File

@ -12221,9 +12221,9 @@ reference transcripts provided in a annotation file (also in GTF/GFF3 format).
(base32 "0rgv6q5fl4x5d74n6p5wvdna6zmbdbqpb4jqqh6vq3670gn08xad"))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; No tests.
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
"DESTDIR=\"\"")
`(#:tests? #f ; No tests.
#:make-flags
,#~(list (string-append "PREFIX=" #$output) "DESTDIR=\"\"")
#:phases
(modify-phases %standard-phases
(delete 'configure)))) ; There is no configure phase.