diff options
author | Samuli Piippo <samuli.piippo@theqtcompany.com> | 2015-11-23 13:42:05 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-12-15 16:46:42 +0100 |
commit | 76c57af769d7627db760dddceeb673d75a05cebf (patch) | |
tree | 6e2319cb202c35eba3f5454d1511a37c4f27fe74 | |
parent | e60184beef8e231f37cec6c919f2b64935b5ccc3 (diff) | |
download | meta-qt5-76c57af769d7627db760dddceeb673d75a05cebf.tar.gz |
qt5: overwrite RRECOMMENDS_${PN} for native packages
The class-target overwrite for RRECOMMENDS_${PN} prevented appending
new packages to the list in other recipes, without using the
class-target overwrite there as well. Instead set RECOMMENDS to empty
for native packages, where it is not needed.
Signed-off-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qt5.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qt5.inc b/recipes-qt/qt5/qt5.inc index 39f7c3ce..4b748fb3 100644 --- a/recipes-qt/qt5/qt5.inc +++ b/recipes-qt/qt5/qt5.inc | |||
@@ -48,10 +48,11 @@ PACKAGES =. "${PN}-qmlplugins-dbg ${PN}-tools-dbg ${PN}-plugins-dbg ${PN}-qmldes | |||
48 | ALLOW_EMPTY_${PN} = "1" | 48 | ALLOW_EMPTY_${PN} = "1" |
49 | ALLOW_EMPTY_${PN}-dbg = "1" | 49 | ALLOW_EMPTY_${PN}-dbg = "1" |
50 | 50 | ||
51 | RRECOMMENDS_${PN}_class-target = " \ | 51 | RRECOMMENDS_${PN} = " \ |
52 | ${PN}-plugins \ | 52 | ${PN}-plugins \ |
53 | ${PN}-qmlplugins \ | 53 | ${PN}-qmlplugins \ |
54 | " | 54 | " |
55 | RRECOMMENDS_${PN}_class-native = "" | ||
55 | 56 | ||
56 | RRECOMMENDS_${PN}-dev = " \ | 57 | RRECOMMENDS_${PN}-dev = " \ |
57 | ${PN} \ | 58 | ${PN} \ |