diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-25 19:24:50 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-26 18:45:28 +0200 |
commit | 6c443975c9cb94131f5956378495c6e3b627b6aa (patch) | |
tree | 82fd07b9df451240af396790c36fb82b5db7cfa4 /gnu | |
parent | 17dddeeee560527a8f30d37761949d658056cb09 (diff) |
system: locale: Only use the current glibc.
Only use the current glibc, as adding glibc-2.29 for compatibility adds
~100MiB to the barebones system closure.
* gnu/system/locale.scm (%default-locale-libcs): Remove glibc-2.29.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system/locale.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm index 689d238d1a..77a6ef8e46 100644 --- a/gnu/system/locale.scm +++ b/gnu/system/locale.scm @@ -147,8 +147,7 @@ data format changes between libc versions." (define %default-locale-libcs ;; The libcs for which we build locales by default. - ;; List the previous and current libc to ease transition. - (list glibc-2.29 glibc)) + (list glibc)) (define %default-locale-definitions ;; Arbitrary set of locales that are built by default. They are here mostly |