guix-commits
[Top][All Lists]
Advanced

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

07/19: gnu: cd-hit: Replace reference to %outputs.


From: guix-commits
Subject: 07/19: gnu: cd-hit: Replace reference to %outputs.
Date: Fri, 3 Dec 2021 18:33:46 -0500 (EST)

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

commit fd607a9efa3fcdbac3a55f081cc94c8cd9db901b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Dec 3 23:56:11 2021 +0100

    gnu: cd-hit: Replace reference to %outputs.
    
    * gnu/packages/bioinformatics.scm (cd-hit)[arguments]: Replace reference to
    %outputs with gexp.
---
 gnu/packages/bioinformatics.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 2a72fed..62b92c8 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2570,9 +2570,9 @@ are not included due to their size.")
      `(#:tests? #f ; there are no tests
        #:make-flags
        ;; Executables are copied directly to the PREFIX.
-       (list (string-append "PREFIX=" (assoc-ref %outputs "out") "/bin")
-             ;; Support longer sequences (e.g. Pacbio sequences)
-             "MAX_SEQ=60000000")
+       ,#~(list (string-append "PREFIX=" #$output "/bin")
+                ;; Support longer sequences (e.g. Pacbio sequences)
+                "MAX_SEQ=60000000")
        #:phases
        (modify-phases %standard-phases
          ;; No "configure" script



reply via email to

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