gst-plugins-package: return few ALLOW_EMPTY settings
Submitted by Martin Jansa on March 6, 2013, 9:52 p.m.
|
Patch ID: 45615
Details
Commit Message
@@ -24,6 +24,13 @@ python populate_packages_prepend () {
d.setVar('DESCRIPTION_' + metapkg, pn + ' meta package')
}
+# metapkg has runtime dependency on PN
+# each plugin depends on PN, plugin-dev on PN-dev and plugin-staticdev on PN-staticdev
+# so we need them even when empty (like in gst-plugins-good case)
+ALLOW_EMPTY_${PN} = "1"
+ALLOW_EMPTY_${PN}-dev = "1"
+ALLOW_EMPTY_${PN}-staticdev = "1"
+
PACKAGES += "${PN}-apps ${PN}-meta ${PN}-glib"
FILES_${PN}-apps = "${bindir}"
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- meta/recipes-multimedia/gstreamer/gst-plugins-package.inc | 7 +++++++ 1 file changed, 7 insertions(+)