From cdee598291fddd2377ea0ea039e7b1101c2808ee Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Tue, 24 Jul 2018 14:25:43 +0200 Subject: [PATCH] Fix yocto virtual recipes parsing * When you have RPROVIDES_${PN} += "virtual/something" you should have PROVIDES += "virtual/something" too It's avoid yocto parsing ERROR. (like remove pulseaudio from DISTRO FEATURE) Bug-AGL: SPEC-1601 Change-Id: I50fa95a5dd61e3ca6d32bc68d5e792fd10aa11fe Signed-off-by: Ronan Le Martret --- recipes-demo-hmi/mixer/mixer_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-demo-hmi/mixer/mixer_git.bb b/recipes-demo-hmi/mixer/mixer_git.bb index 280d98cc8..130ee1df4 100644 --- a/recipes-demo-hmi/mixer/mixer_git.bb +++ b/recipes-demo-hmi/mixer/mixer_git.bb @@ -21,6 +21,7 @@ DEPENDS += "qtquickcontrols2 \ qlibwindowmanager \ " +PROVIDES += "virtual/mixer" RPROVIDES_${PN} += "virtual/mixer" inherit qmake5 aglwgt -- 2.16.6