lilyp pushed a commit to branch gnome-team
in repository guix.
commit 371d07101575ff1fada82a0d46cd55025bda6e0f
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Mon Dec 30 16:03:03 2024 +0100
gnu: node-bootstrap: Fix build.
* gnu/packages/node.scm (node-bootstrap)[snippet]: Also adjust time format
in
“test/parallel/test-intl.js”.
---
gnu/packages/node.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 3d4ce49e92..039848b1a4 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -82,6 +82,11 @@
(("TRUE") "true")
(("FALSE") "false"))
+ ;; Patch for compatibility with ICU 75 and newer, which
+ ;; adds non-breaking narrow spaces.
+ (substitute* "test/parallel/test-intl.js"
+ (("12:00:00 AM") "12:00:00 AM"))
+
;; Fix process.versions.XXXX assumption of always having
;; a version string of major.minor.patch and not major.minor.
(substitute* "test/parallel/test-process-versions.js"