[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/15: gnu: bowtie: Replace invalid characters.
From: |
guix-commits |
Subject: |
03/15: gnu: bowtie: Replace invalid characters. |
Date: |
Sun, 24 Oct 2021 16:39:06 -0400 (EDT) |
rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit f336cc4fe739819115c99bc58122024241640cab
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Oct 24 18:44:57 2021 +0000
gnu: bowtie: Replace invalid characters.
* gnu/packages/bioinformatics.scm (bowtie)[arguments]: Replace invalid
quotes
with straight quotes in the 'configure phase.
---
gnu/packages/bioinformatics.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4743e56..c03ffaf 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1701,7 +1701,12 @@ errors at the end of reads.")
(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"
- branch core-updates-frozen updated (7f151c9 -> b67013c), guix-commits, 2021/10/24
- 01/15: gnu: bowtie: Use TBB 2020., guix-commits, 2021/10/24
- 03/15: gnu: bowtie: Replace invalid characters.,
guix-commits <=
- 02/15: gnu: bowtie: Remove trailing #T., guix-commits, 2021/10/24
- 04/15: gnu: bowtie1: Use TBB 2020., guix-commits, 2021/10/24
- 05/15: gnu: bwa: Pass -fcommon to compiler., guix-commits, 2021/10/24
- 06/15: gnu: bwa: Remove trailing #T., guix-commits, 2021/10/24
- 10/15: gnu: methyldackel: Remove trailing #T., guix-commits, 2021/10/24
- 09/15: gnu: methyldackel: Pass -fcommon to compiler., guix-commits, 2021/10/24
- 12/15: gnu: python-xopen: Update to 0.8.2., guix-commits, 2021/10/24
- 07/15: gnu: flexbar: Remove trailing #T., guix-commits, 2021/10/24
- 08/15: gnu: flexbar: Use TBB 2020., guix-commits, 2021/10/24
- 11/15: gnu: macs: Fix build by setting HOME., guix-commits, 2021/10/24