diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-03 23:54:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-03 23:54:10 +0100 |
commit | c40852a227341c079f5ea8bbdb300b779decaa35 (patch) | |
tree | 4616cbfc3d984b63343e2cbab28682d8768d0752 | |
parent | a47a90b900f5971f2c100c4ec8ba63a82262328d (diff) | |
download | guix-c40852a227341c079f5ea8bbdb300b779decaa35.tar guix-c40852a227341c079f5ea8bbdb300b779decaa35.tar.gz |
gnu: bowtie1: Replace reference to %outputs.
* gnu/packages/bioinformatics.scm (bowtie1)[arguments]: Remove reference to
%outputs by using a gexp.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 710195def3..2a72fed480 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)))) |