diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-02-13 23:08:21 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-02-13 23:09:23 +0100 |
commit | 67d2f688fb89553df53e73a4c584b1b9eb7d5c24 (patch) | |
tree | b723636f08e6d21d099835a0b5e87244a2ba76fd /gnu/packages | |
parent | 661e995c70504111c24314b4703ea85e8d7fb49f (diff) |
gnu: jellyfish: Remove confusing quoting syntax.
* gnu/packages/bioinformatics.scm (jellyfish)[arguments]: Do not mix
quasiquote with gexp.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index e798489d41..c6eab671cb 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5539,11 +5539,12 @@ experiments and provide highly stable thresholds based on reproducibility.") (outputs '("out" ;for library "python")) ;for Python bindings (arguments - `(#:configure-flags - ,#~(list "--without-sse" ; configure script probes for CPU features when SSE is enabled. - (string-append "--enable-python-binding=" #$output:python)) - #:phases - (modify-phases %standard-phases + (list + #:configure-flags + #~(list "--without-sse" ; configure script probes for CPU features when SSE is enabled. + (string-append "--enable-python-binding=" #$output:python)) + #:phases + '(modify-phases %standard-phases (add-before 'check 'set-SHELL-variable (lambda _ ;; generator_manager.hpp either uses /bin/sh or $SHELL |