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 0cf78e4..54b984f 100644 --- a/meta-oe/classes/meson.bbclass +++ b/meta-oe/classes/meson.bbclass @@ -27,7 +27,6 @@ MESONOPTS = " --prefix ${prefix} \ --libexecdir ${@noprefix('libexecdir', d)} \ --includedir ${@noprefix('includedir', d)} \ --mandir ${@noprefix('mandir', d)} \ - --localedir ${@noprefix('localedir', d)} \ --sysconfdir ${sysconfdir}" MESON_C_ARGS = "${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" -- 2.8.1 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
