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

commit a47a90b900f5971f2c100c4ec8ba63a82262328d
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Fri Dec 3 23:52:43 2021 +0100

    gnu: bowtie: Remove reference to %outputs.
    
    * gnu/packages/bioinformatics.scm (bowtie)[arguments]: Replace reference to
    %outputs with a gexp.
---
 gnu/packages/bioinformatics.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 47d958f..710195d 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1995,10 +1995,10 @@ errors at the end of reads.")
                     (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))))))
     (build-system gnu-build-system)
     (arguments
-     '(#:make-flags
-       (list "allall"
-             "WITH_TBB=1"
-             (string-append "prefix=" (assoc-ref %outputs "out")))
+     `(#:make-flags
+       ,#~(list "allall"
+                "WITH_TBB=1"
+                (string-append "prefix=" #$output))
        #:phases
        (modify-phases %standard-phases
          (replace 'configure

Reply via email to