Installing the gstreamer -meta packages was not possible, because the -apps and -glib packages were missing. Allowing for empty -apps/glib packages fixes this.
Signed-off-by: Carlos Rafael Giani <[email protected]> --- meta/recipes-multimedia/gstreamer/gst-plugins-package.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc b/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc index 7ae3ef6..9cab392 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc @@ -25,9 +25,12 @@ python populate_packages_prepend () { } # metapkg has runtime dependency on PN -# each plugin depends on PN, plugin-dev on PN-dev and plugin-staticdev on PN-staticdev +# each plugin depends on PN, plugin-dev on PN-dev and plugin-staticdev on PN-staticdev, +# and plugin-meta on plugin-glib and plugin-apps # so we need them even when empty (like in gst-plugins-good case) ALLOW_EMPTY_${PN} = "1" +ALLOW_EMPTY_${PN}-apps = "1" +ALLOW_EMPTY_${PN}-glib = "1" ALLOW_EMPTY_${PN}-dev = "1" ALLOW_EMPTY_${PN}-staticdev = "1" -- 1.8.2.2 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
