diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-02-25 00:11:18 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-02-25 00:47:49 +0100 |
commit | b9e02a71a972e51a921fada9e1acbb58280f2ed3 (patch) | |
tree | dcd44efb3aa356764dc8bf98107e21afe7625ec7 /gnu | |
parent | 61452a5ab13bcb7ac4d65cfbe7937281204d6f23 (diff) | |
download | gnu-guix-b9e02a71a972e51a921fada9e1acbb58280f2ed3.tar gnu-guix-b9e02a71a972e51a921fada9e1acbb58280f2ed3.tar.gz |
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".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/base.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 554e848369..3f2bd92bed 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -551,9 +551,10 @@ the 'share/locale' sub-directory of this package.") (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 |