diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 12:51:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 15:04:03 +0100 |
commit | 03ca627b09bcdda51f6e6100f9177eb7f50abe3c (patch) | |
tree | 03903047822d916c992bf49f9b90f9954047dc98 | |
parent | fac4c98699004098f680e74c7fb88d43d759b3d4 (diff) | |
download | guix-03ca627b09bcdda51f6e6100f9177eb7f50abe3c.tar.gz guix-03ca627b09bcdda51f6e6100f9177eb7f50abe3c.zip |
gnu: adapterremoval: Remove reference to %outputs.
* gnu/packages/bioinformatics.scm (adapterremoval)[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 e0990bdd69..d5672a45b2 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -13501,9 +13501,9 @@ tools which build on STAR, Arriba does not require to reduce the "1nf3ki5pfzalhrx2fr1y6pfqfi133yj2m7q4fj9irf5fb94bapwr")))) (build-system gnu-build-system) (arguments - `(#:make-flags (list "COLOR_BUILD=no" - (string-append "PREFIX=" - (assoc-ref %outputs "out"))) + `(#:make-flags + ,#~(list "COLOR_BUILD=no" + (string-append "PREFIX=" #$output)) #:test-target "test" #:phases (modify-phases %standard-phases |