summaryrefslogtreecommitdiffstats
path: root/common/recipes-multimedia/gstreamer
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-05-16 13:47:14 +0100
committerTom Zanussi <tom.zanussi@linux.intel.com>2016-05-16 09:50:20 -0500
commitd87917772ca9597ddd19c8b743212b8dae434b41 (patch)
treec1c4170d1d17665d8e0f568a7306dc6d6995e419 /common/recipes-multimedia/gstreamer
parent48a09d7e7050f9448368285a0521673b8004c7a1 (diff)
downloadmeta-intel-d87917772ca9597ddd19c8b743212b8dae434b41.tar.gz
recipes: use bb.utils.contains instead of base_contains
base_contains is simply a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Diffstat (limited to 'common/recipes-multimedia/gstreamer')
-rw-r--r--common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
index 6683a7b0..7a298902 100644
--- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
+++ b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc
@@ -23,9 +23,9 @@ PACKAGES =+ "${PN}-tests"
23EXTRA_OECONF += "--disable-builtin-libvpx" 23EXTRA_OECONF += "--disable-builtin-libvpx"
24 24
25PACKAGECONFIG ??= "drm \ 25PACKAGECONFIG ??= "drm \
26 ${@base_contains("DISTRO_FEATURES", "opengl x11", "glx", "", d)} \ 26 ${@bb.utils.contains("DISTRO_FEATURES", "opengl x11", "glx", "", d)} \
27 ${@base_contains("DISTRO_FEATURES", "wayland", "wayland", "", d)} \ 27 ${@bb.utils.contains("DISTRO_FEATURES", "wayland", "wayland", "", d)} \
28 ${@base_contains("DISTRO_FEATURES", "x11", "x11", "", d)}" 28 ${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)}"
29 29
30PACKAGECONFIG[drm] = "--enable-drm,--disable-drm,udev libdrm" 30PACKAGECONFIG[drm] = "--enable-drm,--disable-drm,udev libdrm"
31PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,virtual/mesa" 31PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,virtual/mesa"