diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2024-05-26 16:04:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:04 +0200 |
commit | ede5ae459b42b85c3f0961903b8a8c2b79ca2795 (patch) | |
tree | a32409291e57781a1ca2e74cd1e9a2ae2eb9bf9b /gnu/system | |
parent | 39ee2865100955586648ab127ab692a8de0ad509 (diff) | |
download | guix-ede5ae459b42b85c3f0961903b8a8c2b79ca2795.tar.gz guix-ede5ae459b42b85c3f0961903b8a8c2b79ca2795.zip |
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
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/locale.scm | 4 |
1 files changed, 1 insertions, 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 |