From 6b866f13fb87d1c1c2cdcbdd5a77502afb7b1470 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 8 Jun 2024 15:56:50 +0200 Subject: gnu: guile-commonmark: Run tests under C.UTF-8. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/guile-xyz.scm (guile-commonmark)[source]: Change “en_US.utf8” to “C.UTF-8” in tests. Change-Id: I85bd8c0a60883f771e75c4ec90e4c441531d777b --- gnu/packages/guile-xyz.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gnu/packages') diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 5a51c98186..4901981bca 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3151,7 +3151,11 @@ key-value cache and store.") (substitute* "configure" (("2\\.2 2\\.0") "3.0 2.2 2.0")) - #t)))) + ;; The 'en_US.utf8' locale is missing, but C.UTF-8 is + ;; enough. + (substitute* (find-files "tests/inlines" "\\.scm$") + (("en_US.utf8") + "C.UTF-8")))))) (build-system gnu-build-system) ;; The tests throw exceptions with Guile 3.0.5, because they evaluate ;; (exit ...). -- cgit v1.2.3