[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: build/jami-service: Fix range ends in account-fin
From: |
guix-commits |
Subject: |
branch master updated: build/jami-service: Fix range ends in account-fingerprint-rx. |
Date: |
Mon, 30 Aug 2021 14:25:48 -0400 |
This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a3bfe95 build/jami-service: Fix range ends in account-fingerprint-rx.
a3bfe95 is described below
commit a3bfe953d2e5f067b268c381437a807e1437c85a
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Mon Aug 30 19:39:35 2021 +0200
build/jami-service: Fix range ends in account-fingerprint-rx.
This broke compilation of Guix with guile@3.0.2 with:
In procedure make-regexp: Invalid range end
The fix is to replace [0-9A-f] with [0-9A-Fa-f].
* gnu/build/jami-service.scm (account-fingerprint-rx): Correct regexp.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/build/jami-service.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/build/jami-service.scm b/gnu/build/jami-service.scm
index d44e873..ddfc8cf 100644
--- a/gnu/build/jami-service.scm
+++ b/gnu/build/jami-service.scm
@@ -96,7 +96,7 @@ before each retry."
(list key value)))
alist))
-(define account-fingerprint-rx (make-regexp "[0-9A-f]{40}"))
+(define account-fingerprint-rx (make-regexp "[0-9A-Fa-f]{40}"))
(define (account-fingerprint? val)
"A Jami account fingerprint is 40 characters long and only contains
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: build/jami-service: Fix range ends in account-fingerprint-rx.,
guix-commits <=