diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-03 23:52:43 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-03 23:52:43 +0100 |
commit | a47a90b900f5971f2c100c4ec8ba63a82262328d (patch) | |
tree | 368d5dbd6408340dba34ea0828d5a02bff62b36e | |
parent | f5c38ee45f04913dbb930c8ae93eab45e53bfa90 (diff) | |
download | guix-a47a90b900f5971f2c100c4ec8ba63a82262328d.tar guix-a47a90b900f5971f2c100c4ec8ba63a82262328d.tar.gz |
gnu: bowtie: Remove reference to %outputs.
* gnu/packages/bioinformatics.scm (bowtie)[arguments]: Replace reference to
%outputs with a gexp.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 47d958f1ae..710195def3 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 |