For historic reasons the localedir directory is where binary locales are stored (/usr/lib/locale) , not where application translations belong (typically, /usr/share/locale). Don't pass localedir explicitly, and let Meson use the default of $datadir/locale to match the behaviour of autotools.bbclass and the expectations of the system.
Signed-off-by: Ross Burton <[email protected]> --- meta-oe/classes/meson.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta-oe/classes/meson.bbclass b/meta-oe/classes/meson.bbclass index 72f96c541..8f384c127 100644 --- a/meta-oe/classes/meson.bbclass +++ b/meta-oe/classes/meson.bbclass @@ -27,7 +27,6 @@ MESONOPTS = " --prefix ${prefix} \ --includedir ${@noprefix('includedir', d)} \ --mandir ${@noprefix('mandir', d)} \ --infodir ${@noprefix('infodir', d)} \ - --localedir ${@noprefix('localedir', d)} \ --sysconfdir ${sysconfdir} \ --localstatedir ${localstatedir} \ --sharedstatedir ${sharedstatedir}" -- 2.11.0 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
