diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-05-13 23:30:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-05-13 23:46:08 +0200 |
commit | 76269f6bc4200ef79aa80a8a6160ae269c2a36c9 (patch) | |
tree | adea56c977be7aec00a919440234932a3ad34110 /gnu/local.mk | |
parent | 1be065c4784805e7a7b4c3f08970d8e4043b0a60 (diff) | |
download | guix-76269f6bc4200ef79aa80a8a6160ae269c2a36c9.tar guix-76269f6bc4200ef79aa80a8a6160ae269c2a36c9.tar.gz |
installer: Use 'glibc-supported-locales'.
The list of locales supported by glibc is now built from source.
* gnu/installer/locale.scm (locale-string->locale): Add optional
'codeset' parameter and honor it.
(supported-locales->locales): Rewrite to 'read' from SUPPORTED-LOCALES.
* gnu/installer.scm (compute-locale-step): Pass the result of
'glibc-supported-locales' instead of the "aux-files/SUPPORTED" file.
* gnu/installer/aux-files/SUPPORTED: Remove.
* gnu/local.mk (dist_installer_DATA): Remove it.
Diffstat (limited to 'gnu/local.mk')
-rw-r--r-- | gnu/local.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index 133293aad3..1b0298ec6f 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -629,8 +629,7 @@ endif installerdir = $(guilemoduledir)/%D%/installer dist_installer_DATA = \ - %D%/installer/aux-files/logo.txt \ - %D%/installer/aux-files/SUPPORTED + %D%/installer/aux-files/logo.txt # Modules that do not need to be compiled. MODULES_NOT_COMPILED += \ |