diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2016-05-04 20:06:30 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-05-16 17:06:51 -0300 |
commit | d2ae870097cb693ff87e476ca90bdfc2c910b01d (patch) | |
tree | 0fcc0f04eb1ac751567756efc80ce8c41baac0d6 /recipes-graphics/gtk+ | |
parent | a749b98c4911ef39d0ea11f7324aa436583bdf3a (diff) | |
download | meta-freescale-d2ae870097cb693ff87e476ca90bdfc2c910b01d.tar.gz |
gtk+3: Stop using base_contains
The base_contains function is deprecated and we ought to use
bb.utils.contains instead.
Change-Id: Ie59e062e6ff8cbb47a14f66635acef8dc1e0a0a1
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics/gtk+')
-rw-r--r-- | recipes-graphics/gtk+/gtk+3_%.bbappend | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-graphics/gtk+/gtk+3_%.bbappend b/recipes-graphics/gtk+/gtk+3_%.bbappend index 649ebd8c..0076d292 100644 --- a/recipes-graphics/gtk+/gtk+3_%.bbappend +++ b/recipes-graphics/gtk+/gtk+3_%.bbappend | |||
@@ -1,6 +1,6 @@ | |||
1 | PACKAGECONFIG_remove_mx6 = "${@base_contains("DISTRO_FEATURES", "x11", "wayland", "", d)}" | 1 | PACKAGECONFIG_remove_mx6 = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "wayland", "", d)}" |
2 | 2 | ||
3 | CFLAGS_append_mx6 = " -DLINUX \ | 3 | CFLAGS_append_mx6 = " -DLINUX \ |
4 | ${@base_contains('DISTRO_FEATURES', 'x11', '', \ | 4 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', \ |
5 | base_contains('DISTRO_FEATURES', 'wayland', \ | 5 | bb.utils.contains('DISTRO_FEATURES', 'wayland', \ |
6 | '-DEGL_API_FB -DEGL_API_WL', '', d), d)}" | 6 | '-DEGL_API_FB -DEGL_API_WL', '', d), d)}" |