summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-02-15 12:01:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-02-16 18:05:40 +0000
commit83402fb9cb01d2012f12623962b454809218c2c9 (patch)
tree64df2c7bcb274068b9a0e33d351164e7f49afdaa /meta/recipes-gnome
parent049027e16d03fa51484265313588baf1df013e60 (diff)
downloadpoky-83402fb9cb01d2012f12623962b454809218c2c9.tar.gz
json-glib: fix native build
Meson can't be told to disable gettext support like autotools can, so for now we need to force NLS on for the json-glib-native build. https://github.com/mesonbuild/meson/issues/821 is the upstream Meson bug. (From OE-Core rev: 1d66481027bcb48deb4e7a89d889ee1b1d16cb40) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r--meta/recipes-gnome/json-glib/json-glib_1.4.2.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-gnome/json-glib/json-glib_1.4.2.bb b/meta/recipes-gnome/json-glib/json-glib_1.4.2.bb
index dd67a8907b..19fe3cc442 100644
--- a/meta/recipes-gnome/json-glib/json-glib_1.4.2.bb
+++ b/meta/recipes-gnome/json-glib/json-glib_1.4.2.bb
@@ -34,3 +34,7 @@ do_install_append() {
34} 34}
35 35
36BBCLASSEXTEND = "native nativesdk" 36BBCLASSEXTEND = "native nativesdk"
37
38# Currently it's not possible to disable gettext in Meson, so we need to force
39# this back on.
40USE_NLS_class-native = "yes"