summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2020-02-10 11:32:31 -0500
committerAnuj Mittal <anuj.mittal@intel.com>2020-02-11 14:32:30 +0800
commitbe73afe9fe855f6077f5f5e44bb2b7a060b46422 (patch)
treeb92d51401f7081b4ad85280030cce406cf8afe1d
parent658366aa136ea30b07d6067e9d57c60972de73ad (diff)
downloadmeta-intel-be73afe9fe855f6077f5f5e44bb2b7a060b46422.tar.gz
intel-vaapi-driver: fix meson build
Change the configure strings to satisfy meson. | meson.build:1:0: ERROR: Value "false" for combo option is not one of the choices. Possible choices are: "yes", "no", "auto". Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--recipes-multimedia/libva/intel-vaapi-driver_2.4.0.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-multimedia/libva/intel-vaapi-driver_2.4.0.bb b/recipes-multimedia/libva/intel-vaapi-driver_2.4.0.bb
index 86b5e999..8d373bc2 100644
--- a/recipes-multimedia/libva/intel-vaapi-driver_2.4.0.bb
+++ b/recipes-multimedia/libva/intel-vaapi-driver_2.4.0.bb
@@ -25,8 +25,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
25 25
26PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \ 26PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \
27 ${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}" 27 ${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}"
28PACKAGECONFIG[x11] = "-Dwith_x11=yes, -Dwith_x11=false" 28PACKAGECONFIG[x11] = "-Dwith_x11=yes, -Dwith_x11=no"
29PACKAGECONFIG[wayland] = "-Dwith_wayland=yes, -Dwith_wayland=false, wayland wayland-native virtual/egl" 29PACKAGECONFIG[wayland] = "-Dwith_wayland=yes, -Dwith_wayland=no, wayland wayland-native virtual/egl"
30 30
31FILES_${PN} += "${libdir}/dri/*.so" 31FILES_${PN} += "${libdir}/dri/*.so"
32FILES_${PN}-dev += "${libdir}/dri/*.la" 32FILES_${PN}-dev += "${libdir}/dri/*.la"