me
/
guix
Archived
1
0
Fork 0

gnu: bamutils: Remove reference to %outputs.

* gnu/packages/bioinformatics.scm (bamutils)[arguments]: Use gexp.
master
Ricardo Wurmus 2021-12-02 22:49:14 +01:00
parent 361e0d9f27
commit 673cc29908
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 3 additions and 3 deletions

View File

@ -337,9 +337,9 @@ BAM files.")
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; There are no tests.
#:make-flags `("USER_WARNINGS=-std=gnu++98"
,(string-append "INSTALLDIR="
(assoc-ref %outputs "out") "/bin"))
#:make-flags
,#~(list "USER_WARNINGS=-std=gnu++98" ;
(string-append "INSTALLDIR=" #$output "/bin"))
#:phases
(modify-phases %standard-phases
(delete 'configure))))