gnu: subread: Remove trailing #T.

* gnu/packages/bioinformatics.scm (subread)[arguments]: Remove trailing #T
from build phases.
This commit is contained in:
Ricardo Wurmus 2021-12-07 12:59:51 +01:00
parent 96b2be833d
commit 4561ca7f4e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7326,13 +7326,12 @@ (define-public subread
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'enter-dir
(lambda _ (chdir "src") #t))
(lambda _ (chdir "src")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
(mkdir-p bin)
(copy-recursively "../bin" bin))
#t))
(copy-recursively "../bin" bin))))
;; no "configure" script
(delete 'configure))))
(inputs `(("zlib" ,zlib)))