This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new f30d84d  system: locale: Remove canonical-package call.
f30d84d is described below

commit f30d84d32db0f4f6cb84e139868e1727a7dc0a51
Author: Mathieu Othacehe <m.othac...@gmail.com>
AuthorDate: Wed Feb 12 11:07:49 2020 +0100

    system: locale: Remove canonical-package call.
    
    This is a follow-up of dfc8ccbf5da96a67eb1cade499f0def21e7fdb02. Building
    locales using the same glibc as the one programs are linked against is
    enough.
    
    * gnu/system/locale.scm (%default-locale-libcs): Use the plain glibc 
package.
---
 gnu/system/locale.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm
index 5baf806..c7a371e 100644
--- a/gnu/system/locale.scm
+++ b/gnu/system/locale.scm
@@ -147,7 +147,7 @@ data format changes between libc versions."
 
 (define %default-locale-libcs
   ;; The libcs for which we build locales by default.
-  (list (canonical-package glibc)))
+  (list glibc))
 
 (define %default-locale-definitions
   ;; Arbitrary set of locales that are built by default.  They are here mostly

Reply via email to