diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-02-25 09:46:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-02-25 09:46:13 +0100 |
commit | 8a00b93027ee185f251d878f46d9967e5ccdd99e (patch) | |
tree | 46193a6f614f9aa7ee76b9ad2314f6db7a69e484 /gnu/packages/base.scm | |
parent | 945562d4692b80b20852723530895e7eb365eb89 (diff) | |
download | patches-8a00b93027ee185f251d878f46d9967e5ccdd99e.tar patches-8a00b93027ee185f251d878f46d9967e5ccdd99e.tar.gz |
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".
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index a603688a6b..dae9ff067b 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -492,7 +492,7 @@ included.") ;; primarily in build environments. (list (search-path-specification (variable "LOCPATH") - (files '("share/locale"))))) + (files '("lib/locale"))))) (synopsis "The GNU C Library") (description |