mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
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:
parent
e5a26a1f02
commit
f336cc4fe7
1 changed files with 6 additions and 1 deletions
|
@ -1701,7 +1701,12 @@ (define-public bowtie
|
||||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
(string-append "prefix=" (assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(replace 'configure
|
||||||
|
(lambda _
|
||||||
|
;; This "extended character" is not considered valid.
|
||||||
|
(substitute* "processor_support.h"
|
||||||
|
(("“") "\"")
|
||||||
|
(("”") "\""))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "perl"
|
(invoke "perl"
|
||||||
|
|
Loading…
Reference in a new issue