diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-01-25 22:33:52 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:46 +0200 |
commit | ee4e79f871bc2f848ce4b4a176bb725ab71e3cd6 (patch) | |
tree | 4ab9bed7de875a093960a8a85440ca0fcc4cc75a | |
parent | a42d54039bde144175352cc85342f809e025e933 (diff) |
ui: Default to “C.UTF-8” locale instead of “en_US.utf8”.
This is a followup to 1cebc334a77030c0c94955981652f4df7608c9e3.
* guix/ui.scm (install-locale): Default to “C.UTF-8”.
Change-Id: Icc92bfe0d75c415eb11a9af207824544ed75e084
-rw-r--r-- | guix/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 9db6f6e9d7..3203423bd6 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -531,7 +531,7 @@ See the \"Application Setup\" section in the manual, for more info.\n")) ;; We're now running in the "C" locale. Try to install a UTF-8 locale ;; instead. This one is guaranteed to be available in 'guix' from 'guix ;; pull'. - (false-if-exception (setlocale LC_ALL "en_US.utf8"))))) + (false-if-exception (setlocale LC_ALL "C.UTF-8"))))) (define (initialize-guix) "Perform the usual initialization for stand-alone Guix commands." |