mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: glibc-locales: Install to lib/locales.
Suggested by Andreas Schwab <schwab@linux-m68k.org> at <http://lists.gnu.org/archive/html/guix-devel/2015-02/msg00652.html>. * gnu/packages/base.scm (glibc-locales) <#:configure-flags>: Change "/share/locale" to "/lib/locale".
This commit is contained in:
parent
61452a5ab1
commit
b9e02a71a9
1 changed files with 2 additions and 1 deletions
|
@ -551,9 +551,10 @@ (define-public glibc-locales
|
|||
(alist-delete 'install ,phases)))
|
||||
((#:configure-flags flags)
|
||||
`(append ,flags
|
||||
;; Use $(libdir)/locale as is the case by default.
|
||||
(list (string-append "libc_cv_localedir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/share/locale")))))))))
|
||||
"/lib/locale")))))))))
|
||||
|
||||
(define-public tzdata
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue