all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Josselin Poiret via Guix-patches via <guix-patches@gnu.org>
To: Josselin Poiret <dev@jpoiret.xyz>, 63057@debbugs.gnu.org
Subject: [bug#63057] [PATCH core-updates 2/3] installer: Filter out C.UTF-8 from the list of locales.
Date: Mon, 24 Apr 2023 21:59:04 +0200	[thread overview]
Message-ID: <d5313e2e92a57458cce0696f3188b077184aa064.1682364024.git.dev@jpoiret.xyz> (raw)
In-Reply-To: <cover.1682364024.git.dev@jpoiret.xyz>

* gnu/installer/locale.scm (supported-locales->locales): Filter out C.UTF-8.  It
doesn't follow the other locales' format, and doesn't have a corresponding
iso639 code.
---
 gnu/installer/locale.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/installer/locale.scm b/gnu/installer/locale.scm
index ccffb6d8ef..2ec0598abb 100644
--- a/gnu/installer/locale.scm
+++ b/gnu/installer/locale.scm
@@ -93,9 +93,10 @@ (define (locale->locale-string locale)
 (define (supported-locales->locales supported-locales)
   "Given SUPPORTED-LOCALES, a file produced by 'glibc-supported-locales',
 return a list of locales where each locale is an alist."
-  (map (match-lambda
-         ((locale . codeset)
-          (locale-string->locale locale codeset)))
+  (filter-map (match-lambda
+                (("C.UTF-8" . codeset) #f)
+                ((locale . codeset)
+                 (locale-string->locale locale codeset)))
        (call-with-input-file supported-locales read)))
 
 \f
-- 
2.39.2





  parent reply	other threads:[~2023-04-24 20:00 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-24 19:42 [bug#63057] [PATCH core-updates 0/3] Some installer fixes Josselin Poiret via Guix-patches via
2023-04-24 19:59 ` [bug#63057] [PATCH core-updates 1/3] system: guix: Use config's ACL file location Josselin Poiret via Guix-patches via
2023-04-24 19:59 ` Josselin Poiret via Guix-patches via [this message]
2023-04-24 19:59 ` [bug#63057] [PATCH core-updates 3/3] doc: Add --sysconfdir=/etc to the recommended ./configure Josselin Poiret via Guix-patches via
2023-04-30 21:12 ` bug#63057: [PATCH core-updates 0/3] Some installer fixes Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d5313e2e92a57458cce0696f3188b077184aa064.1682364024.git.dev@jpoiret.xyz \
    --to=guix-patches@gnu.org \
    --cc=63057@debbugs.gnu.org \
    --cc=dev@jpoiret.xyz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.