gst-plugins-package: return few ALLOW_EMPTY settings

(From OE-Core rev: 26c2eed11d9293a7a3b8e2177be76d2457d69efd)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Martin Jansa 2013-03-06 22:52:33 +01:00 committed by Richard Purdie
parent e1efe7669b
commit 3ebcbd3e7f
1 changed files with 7 additions and 0 deletions

View File

@ -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}"