gnu: prodigal: Remove reference to %outputs.

* gnu/packages/bioinformatics.scm (prodigal)[arguments]: Remove reference to
%outputs by using a gexp.
This commit is contained in:
Ricardo Wurmus 2021-12-04 15:13:11 +01:00
parent 09ae51f7b8
commit cfaf37d10b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -5942,9 +5942,8 @@ (define-public prodigal
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no check target
#:make-flags (list (string-append "INSTALLDIR="
(assoc-ref %outputs "out")
"/bin"))
#:make-flags
,#~(list (string-append "INSTALLDIR=" #$output "/bin"))
#:phases
(modify-phases %standard-phases
(delete 'configure))))