diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-30 17:06:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-30 17:06:40 +0200 |
commit | 46bd6edd5af4b4fe1f1d066028a6a84ed17ce96b (patch) | |
tree | 4344e7879a0de0cbccc4dfdda883866f969822da /doc/guix.texi | |
parent | c24fff615b5217299246f40d45c230dab933d59b (diff) | |
download | guix-46bd6edd5af4b4fe1f1d066028a6a84ed17ce96b.tar guix-46bd6edd5af4b4fe1f1d066028a6a84ed17ce96b.tar.gz |
gnu: libc: Look for locale data under /run/current-system/locale/X.Y.
* gnu/packages/base.scm (glibc)[arguments]: Append VERSION to
'libc_cv_localedir'.
* gnu/system/locale.scm (localedef-command): Write to the sub-directory
called (package-version libc) in #$output.
(locale-directory): Create said directory.
* doc/guix.texi (Locales): Mention the per-version sub-directory.
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 6a3765f56a..68ee451efc 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -5591,9 +5591,10 @@ list only the locales that are actually used, as in: @vindex LOCPATH The compiled locale definitions are available at -@file{/run/current-system/locale}, which is the default location where -the GNU@tie{}libc looks for locale data. This can be overridden using -the @code{LOCPATH} environment variable (@pxref{locales-and-locpath, +@file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc +version, which is the default location where the GNU@tie{}libc provided +by Guix looks for locale data. This can be overridden using the +@code{LOCPATH} environment variable (@pxref{locales-and-locpath, @code{LOCPATH} and locale packages}). The @code{locale-definition} form is provided by the @code{(gnu system |