diff options
author | Daniel Lazzari <dlazzari@leapfrog.com> | 2011-09-20 23:15:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-21 13:42:52 +0100 |
commit | 9aa8b769d5b69bdd3974391689210225bebbd509 (patch) | |
tree | 98d5d75b2eb5ea5af00b37c4d954bbe3e586a89e /meta | |
parent | a0530fc847066fd1eb359216b9d49059146e7107 (diff) | |
download | poky-9aa8b769d5b69bdd3974391689210225bebbd509.tar.gz |
Fix alsa-utils package dependencies
Make alsa-utils main package depend on all of the more specific alsa-utils packages (such as alsa-utils-alsamixer).
(From OE-Core rev: 181063d0ae52b6c5ec203ea7c4fee629761cafdf)
Signed-off-by: Daniel Lazzari Jr <dlazzari@leapfrog.com>
PR Bump
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb index 52a7871436..1b3ffe11b4 100644 --- a/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb +++ b/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb | |||
@@ -6,7 +6,7 @@ LICENSE = "GPLv2+" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \ | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \ |
7 | file://alsactl/utils.c;beginline=1;endline=20;md5=fe9526b055e246b5558809a5ae25c0b9" | 7 | file://alsactl/utils.c;beginline=1;endline=20;md5=fe9526b055e246b5558809a5ae25c0b9" |
8 | DEPENDS = "alsa-lib ncurses" | 8 | DEPENDS = "alsa-lib ncurses" |
9 | PR = "r1" | 9 | PR = "r2" |
10 | 10 | ||
11 | SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \ | 11 | SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \ |
12 | file://ncursesfix.patch \ | 12 | file://ncursesfix.patch \ |
@@ -28,7 +28,7 @@ inherit autotools gettext | |||
28 | # This are all packages that we need to make. Also, the now empty alsa-utils | 28 | # This are all packages that we need to make. Also, the now empty alsa-utils |
29 | # ipk depends on them. | 29 | # ipk depends on them. |
30 | 30 | ||
31 | PACKAGES += "\ | 31 | ALSA_UTILS_PKGS = "\ |
32 | alsa-utils-alsamixer \ | 32 | alsa-utils-alsamixer \ |
33 | alsa-utils-midi \ | 33 | alsa-utils-midi \ |
34 | alsa-utils-aplay \ | 34 | alsa-utils-aplay \ |
@@ -44,6 +44,9 @@ PACKAGES += "\ | |||
44 | alsa-utils-alsaucm \ | 44 | alsa-utils-alsaucm \ |
45 | " | 45 | " |
46 | 46 | ||
47 | PACKAGES += "${ALSA_UTILS_PKGS}" | ||
48 | RDEPENDS_${PN} += "${ALSA_UTILS_PKGS}" | ||
49 | |||
47 | # We omit alsaconf, because | 50 | # We omit alsaconf, because |
48 | # a) this is a bash script | 51 | # a) this is a bash script |
49 | # b) it creates config files not suitable for OE-based distros | 52 | # b) it creates config files not suitable for OE-based distros |