If 'alsa' is not in DISTRO_FEATURES, gstreamer1.0-plugins-base configures the alsa plugin out of its build. Unconditionally including it in the packagegroup leads to rootfs creation failures, as the package manager cannot satisfy the dependency.
Signed-off-by: Matt Madison <[email protected]> --- recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb b/recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb index d311671..06947c0 100644 --- a/recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb +++ b/recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb @@ -44,7 +44,7 @@ GST_WAYLAND_PACKAGES = " \ RDEPENDS_${PN}-base = " \ gstreamer1.0 \ gstreamer1.0-plugins-base-playback \ - gstreamer1.0-plugins-base-alsa \ + ${@base_contains('DISTRO_FEATURES', 'alsa', 'gstreamer1.0-plugins-base-alsa', '', d)} \ gstreamer1.0-plugins-base-audioconvert \ gstreamer1.0-plugins-base-audioresample \ gstreamer1.0-plugins-base-gio \ -- 1.9.1 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
