gnu: hisat: Remove invalid characters.

* gnu/packages/bioinformatics.scm (hisat)[arguments]: Remove curly quotes.
This commit is contained in:
Ricardo Wurmus 2021-12-07 11:45:22 +01:00
parent 478e3e714a
commit 9dc727f827
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -4131,7 +4131,10 @@ (define-public hisat
(("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))
(substitute* '("hisat-build" "hisat-inspect")
(("/usr/bin/env") (which "env")))
#t))
;; This "extended character" is not considered valid.
(substitute* "processor_support.h"
(("“") "\"")
(("”") "\""))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))