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-30 08:31:13 -0300 |
commit | 87248f5529e68b232d3eda73bebe7151ae32e17f (patch) | |
tree | 17962767f20d5e68b0b09862e0235d60449fe775 | |
parent | 0a4ca9e73862c50c551cd6f531b73040700ebb4b (diff) | |
download | meta-fsl-arm-87248f5529e68b232d3eda73bebe7151ae32e17f.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)}" |