diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-03-06 22:52:33 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-12 18:33:30 +0000 |
commit | 3ebcbd3e7fc0cfc6b646bcc6acc9adcb11f15897 (patch) | |
tree | 37917d655ff641df4cfe89cc39e460bc49b0b870 | |
parent | e1efe7669b627cf8061c16d53727442529ecd578 (diff) | |
download | ast2050-yocto-poky-3ebcbd3e7fc0cfc6b646bcc6acc9adcb11f15897.zip ast2050-yocto-poky-3ebcbd3e7fc0cfc6b646bcc6acc9adcb11f15897.tar.gz |
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>
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins-package.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc b/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc index 3e9ef92..7ae3ef6 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc @@ -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}" |