jpoiret pushed a commit to branch core-updates
in repository guix.

commit 2852150b213c5514071a33745478a062c2957704
Author: Josselin Poiret <d...@jpoiret.xyz>
AuthorDate: Sun May 26 16:04:32 2024 +0200

    gnu: %default-locale-libcs: Add glibc-2.35 and generalize for Hurd.
    
    * gnu/system/locale.scm (%default-locale-libcs): Stop checking for Hurd, 
since
    we have the same libc now.  Also add glibc-2.35 while the transition 
happens.
    
    Change-Id: I1f4980d18184580f3a42a86ca244c8015df15269
---
 gnu/system/locale.scm | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm
index b8910e1e42..d2a967eb8f 100644
--- a/gnu/system/locale.scm
+++ b/gnu/system/locale.scm
@@ -148,9 +148,7 @@ data format changes between libc versions."
 
 (define %default-locale-libcs
   ;; The libcs for which we build locales by default.
-  (if (system-hurd?)
-      (list glibc/hurd)
-      (list glibc)))
+  (list glibc glibc-2.35))
 
 (define %default-locale-definitions
   ;; Arbitrary set of locales that are built by default.  They come as a

Reply via email to