gnu: glibc: Change 'LOCPATH' specification to look for "lib/locale".

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)[native-search-paths]: Change
  "share/locale" to "lib/locale".
This commit is contained in:
Ludovic Courtès 2015-02-25 09:46:13 +01:00
parent 945562d469
commit 8a00b93027

View File

@ -492,7 +492,7 @@ (define-public glibc
;; primarily in build environments.
(list (search-path-specification
(variable "LOCPATH")
(files '("share/locale")))))
(files '("lib/locale")))))
(synopsis "The GNU C Library")
(description