diff options
author | Christopher Larson <chris_larson@mentor.com> | 2013-11-27 11:07:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-05 13:30:20 +0000 |
commit | 7e7ff7d1e5e86f097ef40befcf00dd28657e26f8 (patch) | |
tree | a95f4eb7f11faa52a6140c647d85d6ffdc3c2a9e /meta/recipes-multimedia/pulseaudio | |
parent | 6f50ccb8ae9e11870f99bb3b191f677c3633cd0d (diff) | |
download | openembedded-core-contrib-7e7ff7d1e5e86f097ef40befcf00dd28657e26f8.tar.gz |
pulseaudio: fix RDEPENDS traversal for consolekit
Include the console-kit module in PACKSGES explicitly so bitbake can map to
the RDEPENDS we define for it in this recipe, and thereby ensure that when
adding the console-kit module to an image, we also get the necessary
consolekit package produced.
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/pulseaudio')
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc index 7e87ef8d6b9..2bee9eb164a 100644 --- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc @@ -69,8 +69,12 @@ USERADD_PARAM_pulseaudio-server = "--system --home /var/run/pulse \ --no-create-home --shell /bin/false \ --groups audio,pulse --gid pulse pulse" +# The console-kit module is included here explicitly so bitbake can map to the +# RDEPENDS we define for it in this recipe, and thereby ensure that when +# adding the console-kit module to an image, we also get the necessary +# consolekit package produced. PACKAGES =+ "libpulsecore libpulsecommon libpulse libpulse-simple libpulse-mainloop-glib \ - pulseaudio-server pulseaudio-misc" + pulseaudio-server pulseaudio-misc pulseaudio-module-console-kit" #upgrade path: RREPLACES_pulseaudio-server = "libpulse-bin libpulse-conf" |