guix-commits
[Top][All Lists]
Advanced

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

06/19: gnu: bowtie1: Replace reference to %outputs.


From: guix-commits
Subject: 06/19: gnu: bowtie1: Replace reference to %outputs.
Date: Fri, 3 Dec 2021 18:33:45 -0500 (EST)

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

commit c40852a227341c079f5ea8bbdb300b779decaa35
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Dec 3 23:54:10 2021 +0100

    gnu: bowtie1: Replace reference to %outputs.
    
    * gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Remove reference to
    %outputs by using a 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 710195d..2a72fed 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2054,10 +2054,10 @@ gapped, local, and paired-end alignment modes.")
                   (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")))))
     (build-system gnu-build-system)
     (arguments
-     '(#:tests? #f                      ; no "check" target
+     `(#:tests? #f                      ; no "check" target
        #:make-flags
-       (list "CC=gcc" "all"
-             (string-append "prefix=" (assoc-ref %outputs "out")))
+       ,#~(list "CC=gcc" "all"
+                (string-append "prefix=" #$output))
        #:phases
        (modify-phases %standard-phases
          (delete 'configure))))



reply via email to

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