rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit c40852a227341c079f5ea8bbdb300b779decaa35
Author: Ricardo Wurmus <[email protected]>
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))))