diff options
author | Ross Burton <ross.burton@intel.com> | 2018-07-16 16:27:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-18 10:18:42 +0100 |
commit | 164785f81a6899291ae1d35cc98915c13b95f804 (patch) | |
tree | be24a9eac1467a0bfb0fcb540ec81bdbddc33165 /meta | |
parent | ea9d7095a641b4dbf2b8f0dabd5099159e45ce82 (diff) | |
download | poky-164785f81a6899291ae1d35cc98915c13b95f804.tar.gz |
atk: add explicit gettext-native dependency
In native builds we attempt to turn off i18n but this doesn't work in Meson
yet[1] but as the gettext class reduces dependencies in native builds we need to
add gettext-native to DEPENDS explicitly.
[1] https://github.com/mesonbuild/meson/issues/821
(From OE-Core rev: 964ea8bfc455f6017dc834104d96b8f5aa40a5bc)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/atk/atk_2.28.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/atk/atk_2.28.1.bb b/meta/recipes-support/atk/atk_2.28.1.bb index a051247d8f..26b13b69d7 100644 --- a/meta/recipes-support/atk/atk_2.28.1.bb +++ b/meta/recipes-support/atk/atk_2.28.1.bb | |||
@@ -8,7 +8,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \ | |||
8 | file://atk/atkutil.c;endline=18;md5=6fd31cd2fdc9b30f619ca8d819bc12d3 \ | 8 | file://atk/atkutil.c;endline=18;md5=6fd31cd2fdc9b30f619ca8d819bc12d3 \ |
9 | file://atk/atk.h;endline=18;md5=fcd7710187e0eae485e356c30d1b0c3b" | 9 | file://atk/atk.h;endline=18;md5=fcd7710187e0eae485e356c30d1b0c3b" |
10 | 10 | ||
11 | DEPENDS = "glib-2.0" | 11 | # Need gettext-native as Meson can't turn off i18n |
12 | DEPENDS = "gettext-native glib-2.0" | ||
12 | 13 | ||
13 | GNOMEBASEBUILDCLASS = "meson" | 14 | GNOMEBASEBUILDCLASS = "meson" |
14 | inherit gnomebase gtk-doc gettext upstream-version-is-even gobject-introspection | 15 | inherit gnomebase gtk-doc gettext upstream-version-is-even gobject-introspection |