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 | 968e41c8a02b4cd07b841b805033339cb5865cc4 (patch) | |
tree | e5061f683bf8652ed6a696d3196abc47e27ebccf | |
parent | 3ff4ecd2cb4cd75817129e87892164f02da3e416 (diff) | |
download | meta-fsl-arm-968e41c8a02b4cd07b841b805033339cb5865cc4.tar.gz |
gstreamer1.0-plugins-imx: Stop using base_contains
The base_contains function is deprecated and we ought to use
bb.utils.contains instead.
Change-Id: Ia6c35c969b85062676e6c73359f392bb6a0c0f8a
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.1.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.1.bb b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.1.bb index c20b942..6f81341 100644 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.1.bb +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.1.bb | |||
@@ -27,8 +27,8 @@ do_compile[depends] += "virtual/kernel:do_shared_workdir" | |||
27 | # X11 if x11 is present in DISTRO_FEATURES | 27 | # X11 if x11 is present in DISTRO_FEATURES |
28 | # Wayland if x11 is not present in DISTRO_FEATURES, but wayland is | 28 | # Wayland if x11 is not present in DISTRO_FEATURES, but wayland is |
29 | # Framebuffer otherwise | 29 | # Framebuffer otherwise |
30 | EGLVIVSINK_PLATFORM = "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', \ | 30 | EGLVIVSINK_PLATFORM = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', \ |
31 | base_contains('DISTRO_FEATURES', 'wayland', 'wayland', \ | 31 | bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', \ |
32 | 'fb', d),d)}" | 32 | 'fb', d),d)}" |
33 | 33 | ||
34 | EGL_PLATFORM_CONF = "--egl-platform=${EGLVIVSINK_PLATFORM}" | 34 | EGL_PLATFORM_CONF = "--egl-platform=${EGLVIVSINK_PLATFORM}" |
@@ -36,8 +36,8 @@ EXTRA_OECONF = "--kernel-headers=${STAGING_KERNEL_DIR}/include" | |||
36 | 36 | ||
37 | EGLVIVSINK_DEPENDS = " \ | 37 | EGLVIVSINK_DEPENDS = " \ |
38 | virtual/egl virtual/libgles2 \ | 38 | virtual/egl virtual/libgles2 \ |
39 | ${@base_contains('DISTRO_FEATURES', 'x11', 'virtual/libx11', \ | 39 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'virtual/libx11', \ |
40 | base_contains('DISTRO_FEATURES', 'wayland', 'wayland', \ | 40 | bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', \ |
41 | '', d),d)}" | 41 | '', d),d)}" |
42 | 42 | ||
43 | PACKAGECONFIG ?= "" | 43 | PACKAGECONFIG ?= "" |