diff options
-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)))) |