task-poky-tools.bb: avoid multiple RRECOMMENDS to override each other

there're two RRECOMMENDS_task-poky-tools-profile both using direct assignment,
which makes 'perf' overriden by "kernel-module-oprofile"

Fix [BUGID #97]

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
This commit is contained in:
Kevin Tian
2010-09-06 10:25:15 +08:00
committed by Richard Purdie
parent 95b2d9395e
commit e359e25dc7

View File

@@ -4,7 +4,7 @@
DESCRIPTION = "Tools tasks for Poky"
LICENSE = "MIT"
PR = "r5"
PR = "r6"
PACKAGES = "\
task-poky-tools-debug \
@@ -43,7 +43,8 @@ RDEPENDS_task-poky-tools-profile = "\
lttng-viewer"
RRECOMMENDS_task-poky-tools-profile = "\
perf"
perf \
kernel-module-oprofile"
# exmap-console
# exmap-server
@@ -58,9 +59,6 @@ RDEPENDS_task-poky-tools-profile_append_qemuppc = " lttng-ust"
RDEPENDS_task-poky-tools-profile_append_emenlow = " lttng-ust"
RDEPENDS_task-poky-tools-profile_append_netbook = " lttng-ust"
RRECOMMENDS_task-poky-tools-profile = "\
kernel-module-oprofile"
RDEPENDS_task-poky-tools-testapps = "\
blktool \
tslib-calibrate \