diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-07 12:59:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-07 12:59:51 +0100 |
commit | 4561ca7f4eb1d7230df943d0e3c5e9886505f061 (patch) | |
tree | 8f3cd232a39234aaa132a44e460eb2bb22b9aede | |
parent | 96b2be833d24859a34ef2f96aa992e7f762287b5 (diff) | |
download | guix-4561ca7f4eb1d7230df943d0e3c5e9886505f061.tar.gz |
gnu: subread: Remove trailing #T.
* gnu/packages/bioinformatics.scm (subread)[arguments]: Remove trailing #T from build phases.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 8473748803..799a41d59d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7326,13 +7326,12 @@ sequences.") #: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))) |