gnu: bowtie1: Replace reference to %outputs.

* gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Remove reference to
%outputs by using a gexp.
This commit is contained in:
Ricardo Wurmus 2021-12-03 23:54:10 +01:00
parent a47a90b900
commit c40852a227
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2054,10 +2054,10 @@ (define-public bowtie1
(("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no "check" target
`(#:tests? #f ; no "check" target
#:make-flags
(list "CC=gcc" "all"
(string-append "prefix=" (assoc-ref %outputs "out")))
,#~(list "CC=gcc" "all"
(string-append "prefix=" #$output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))