diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-02-12 11:07:49 +0100 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-02-12 11:09:11 +0100 |
commit | f30d84d32db0f4f6cb84e139868e1727a7dc0a51 (patch) | |
tree | 7675ca2b601c7bccc5fed7b05eaf2aaf3ebb968e /gnu/system | |
parent | dfc8ccbf5da96a67eb1cade499f0def21e7fdb02 (diff) |
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.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/locale.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm index 5baf80622c..c7a371e9bf 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 |