From: Nitin A Kamble <[email protected]> Since the PACKAGECONFIG parameters were changed in the libva.inc file for the newer version of the libva recipe, this older version of libva recipe started throwing following QA warning.
WARNING: QA Issue: libva: configure was passed unrecognised options: --enable-wayland --enable-x11 Fix the warning by nullifying PACKAGECONFIG variables coming from libva.inc. Fixes Bug: [YOCTO #5764] Signed-off-by: Nitin A Kamble <[email protected]> --- common/recipes-multimedia/libva/libva_1.0.16.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/recipes-multimedia/libva/libva_1.0.16.bb b/common/recipes-multimedia/libva/libva_1.0.16.bb index 7374c70..4c8ab14 100644 --- a/common/recipes-multimedia/libva/libva_1.0.16.bb +++ b/common/recipes-multimedia/libva/libva_1.0.16.bb @@ -1,5 +1,8 @@ require libva.inc +PACKAGECONFIG[x11] = ",,virtual/libx11 libxext libxfixes" +PACKAGECONFIG[wayland] = ",," + PR = "${INC_PR}.0" SRC_URI = "http://www.freedesktop.org/software/vaapi/releases/libva/libva-${PV}.tar.bz2" -- 1.8.1.4 _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
