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-06 18:24:48 -0300 |
commit | 4bdb0a61a7a8658c8213137b7178d8dbecabb64d (patch) | |
tree | ff15c022cd94f6ad45a1b2a8e8e65fa2fe27a6e3 | |
parent | 79c69dca5f34879fbddabb54bfa48e22aaa50ba4 (diff) | |
download | meta-fsl-arm-4bdb0a61a7a8658c8213137b7178d8dbecabb64d.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>
-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 649ebd8..0076d29 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)}" |