From ffe8a0e0ad7e8594ace8c36abb11503bd1668658 Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Tue, 22 Oct 2013 15:38:01 +0000 Subject: [PATCH] qtwebkit-examples: add missing RDEPENDS for qmlplugins Some examples require qtwebkit-qmlplugins (flickerview, youtubeview), and this dependency is not automatically added. Without this patch, and without manually adding qtwekbit-qmlplugins, we get errors like this: qrc:///flickrview.qml:42:1: module "QtWebKit" is not installed Signed-off-by: Nicolas Dechesne Signed-off-by: Martin Jansa --- recipes-qt/qt5/qtwebkit-examples.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-qt/qt5/qtwebkit-examples.inc b/recipes-qt/qt5/qtwebkit-examples.inc index 38b2a7cbf4..50c28cdb7a 100644 --- a/recipes-qt/qt5/qtwebkit-examples.inc +++ b/recipes-qt/qt5/qtwebkit-examples.inc @@ -9,3 +9,4 @@ SRC_URI += " \ " DEPENDS += "qtwebkit" +RDEPENDS_${PN}-examples += "qtwebkit-qmlplugins"