diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-09-06 10:25:15 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-06 15:59:45 +0100 |
commit | e359e25dc73ca496d1bac49ac4d68a7c18bd7d8a (patch) | |
tree | 0c07bb58497010e2d18f6843b24d4d9bb208fb2b /meta/packages | |
parent | 95b2d9395e62a770f976b97175247d4e7522d9b6 (diff) | |
download | poky-e359e25dc73ca496d1bac49ac4d68a7c18bd7d8a.tar.gz |
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>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/tasks/task-poky-tools.bb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/packages/tasks/task-poky-tools.bb b/meta/packages/tasks/task-poky-tools.bb index b9aab60f59..581af84ef4 100644 --- a/meta/packages/tasks/task-poky-tools.bb +++ b/meta/packages/tasks/task-poky-tools.bb | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | DESCRIPTION = "Tools tasks for Poky" | 5 | DESCRIPTION = "Tools tasks for Poky" |
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | PR = "r5" | 7 | PR = "r6" |
8 | 8 | ||
9 | PACKAGES = "\ | 9 | PACKAGES = "\ |
10 | task-poky-tools-debug \ | 10 | task-poky-tools-debug \ |
@@ -43,7 +43,8 @@ RDEPENDS_task-poky-tools-profile = "\ | |||
43 | lttng-viewer" | 43 | lttng-viewer" |
44 | 44 | ||
45 | RRECOMMENDS_task-poky-tools-profile = "\ | 45 | RRECOMMENDS_task-poky-tools-profile = "\ |
46 | perf" | 46 | perf \ |
47 | kernel-module-oprofile" | ||
47 | 48 | ||
48 | # exmap-console | 49 | # exmap-console |
49 | # exmap-server | 50 | # exmap-server |
@@ -58,9 +59,6 @@ RDEPENDS_task-poky-tools-profile_append_qemuppc = " lttng-ust" | |||
58 | RDEPENDS_task-poky-tools-profile_append_emenlow = " lttng-ust" | 59 | RDEPENDS_task-poky-tools-profile_append_emenlow = " lttng-ust" |
59 | RDEPENDS_task-poky-tools-profile_append_netbook = " lttng-ust" | 60 | RDEPENDS_task-poky-tools-profile_append_netbook = " lttng-ust" |
60 | 61 | ||
61 | RRECOMMENDS_task-poky-tools-profile = "\ | ||
62 | kernel-module-oprofile" | ||
63 | |||
64 | RDEPENDS_task-poky-tools-testapps = "\ | 62 | RDEPENDS_task-poky-tools-testapps = "\ |
65 | blktool \ | 63 | blktool \ |
66 | tslib-calibrate \ | 64 | tslib-calibrate \ |