mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
This otherwise makes localedir to point to prefix/lib which is wrong location for locale splitting and we end with unpackaged locale files e.g. systemd throws this WARNING: QA Issue: systemd: Files/directories were installed but not shipped /usr/lib/locale /usr/lib/locale/fr /usr/lib/locale/pl /usr/lib/locale/ru /usr/lib/locale/it /usr/lib/locale/fr/LC_MESSAGES /usr/lib/locale/fr/LC_MESSAGES/systemd.mo /usr/lib/locale/pl/LC_MESSAGES /usr/lib/locale/pl/LC_MESSAGES/systemd.mo /usr/lib/locale/ru/LC_MESSAGES /usr/lib/locale/ru/LC_MESSAGES/systemd.mo /usr/lib/locale/it/LC_MESSAGES /usr/lib/locale/it/LC_MESSAGES/systemd.mo (From OE-Core rev: 511121dc1867279f2483ddf236e4c64c90bc8acb) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
593 B
Diff
20 lines
593 B
Diff
on uclibc systems localedir should point to /usr/'share' as usual.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
Index: intltool-0.50.2/intltool.m4
|
|
===================================================================
|
|
--- intltool-0.50.2.orig/intltool.m4 2014-03-15 22:09:01.016627665 -0700
|
|
+++ intltool-0.50.2/intltool.m4 2014-03-15 22:12:09.732631206 -0700
|
|
@@ -173,6 +173,9 @@
|
|
AC_CHECK_FUNC(bind_textdomain_codeset,
|
|
[DATADIRNAME=share], [DATADIRNAME=lib])
|
|
;;
|
|
+ *-*-*uclibc*)
|
|
+ [DATADIRNAME=share]
|
|
+ ;;
|
|
*)
|
|
[DATADIRNAME=lib]
|
|
;;
|