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 | 850e7ec2c4b5c5f88f428d5d8d80e5bf65d360e0 (patch) | |
tree | 2620d3de38e9c0b5ab07090b4073392364e0aef0 | |
parent | 1d48da539dcccec782adb91b05e6d80eda7820ec (diff) | |
download | meta-fsl-arm-850e7ec2c4b5c5f88f428d5d8d80e5bf65d360e0.tar.gz |
cairo: Stop using base_contains
The base_contains function is deprecated and we ought to use
bb.utils.contains instead.
Change-Id: I5da85f2d0e2ec85065d5ab25336f838728c36d83
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-graphics/cairo/cairo_%.bbappend | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/cairo/cairo_%.bbappend b/recipes-graphics/cairo/cairo_%.bbappend index 66e019a..6f9e09d 100644 --- a/recipes-graphics/cairo/cairo_%.bbappend +++ b/recipes-graphics/cairo/cairo_%.bbappend | |||
@@ -1,6 +1,6 @@ | |||
1 | CFLAGS_append_mx6 = " -DLINUX \ | 1 | CFLAGS_append_mx6 = " -DLINUX \ |
2 | ${@base_contains('DISTRO_FEATURES', 'x11', '', \ | 2 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', \ |
3 | base_contains('DISTRO_FEATURES', 'wayland', \ | 3 | bb.utils.contains('DISTRO_FEATURES', 'wayland', \ |
4 | '-DEGL_API_FB -DEGL_API_WL', '-DEGL_API_FB', d), d)}" | 4 | '-DEGL_API_FB -DEGL_API_WL', '-DEGL_API_FB', d), d)}" |
5 | 5 | ||
6 | PACKAGECONFIG_append_mx6q = " egl glesv2" | 6 | PACKAGECONFIG_append_mx6q = " egl glesv2" |