diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 12:54:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 15:04:04 +0100 |
commit | c973107a25f035bd79e2c13030812822db1b5e71 (patch) | |
tree | 2c3354be91f6351a9182469e744d3f819186f3dc /gnu/packages/bioinformatics.scm | |
parent | d531dc6761a58a5995b64628232e9469158badb6 (diff) | |
download | guix-c973107a25f035bd79e2c13030812822db1b5e71.tar.gz guix-c973107a25f035bd79e2c13030812822db1b5e71.zip |
gnu: methyldackel: Remove reference to %outputs.
* gnu/packages/bioinformatics.scm (methyldackel)[arguments]: Remove reference
to %outputs by using a gexp.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 85493e8c32..67baaf3035 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -14455,10 +14455,9 @@ patterns.") (arguments `(#:test-target "test" #:make-flags - (list "CC=gcc" - "CFLAGS=-fcommon" - (string-append "prefix=" - (assoc-ref %outputs "out") "/bin/")) + ,#~(list "CC=gcc" + "CFLAGS=-fcommon" + (string-append "prefix=" #$output "/bin/")) #:phases (modify-phases %standard-phases (replace 'configure |