gnu: bowtie: Replace invalid characters.

* gnu/packages/bioinformatics.scm (bowtie)[arguments]: Replace invalid quotes
with straight quotes in the 'configure phase.
This commit is contained in:
Ricardo Wurmus 2021-10-24 18:44:57 +00:00
parent e5a26a1f02
commit f336cc4fe7
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1701,7 +1701,12 @@ (define-public bowtie
(string-append "prefix=" (assoc-ref %outputs "out")))
#:phases
(modify-phases %standard-phases
(delete 'configure)
(replace 'configure
(lambda _
;; This "extended character" is not considered valid.
(substitute* "processor_support.h"
(("“") "\"")
(("”") "\""))))
(replace 'check
(lambda _
(invoke "perl"