guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/15: gnu: subread: Remove trailing #T.


From: guix-commits
Subject: 08/15: gnu: subread: Remove trailing #T.
Date: Tue, 7 Dec 2021 07:18:30 -0500 (EST)

rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit 4561ca7f4eb1d7230df943d0e3c5e9886505f061
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Dec 7 12:59:51 2021 +0100

    gnu: subread: Remove trailing #T.
    
    * gnu/packages/bioinformatics.scm (subread)[arguments]: Remove trailing #T
    from build phases.
---
 gnu/packages/bioinformatics.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8473748..799a41d 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]