diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2010-07-20 16:32:04 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-21 16:00:54 +0100 |
commit | fb92046d99d763195b15f819c5b94049df6d7da4 (patch) | |
tree | 1b3015bc252cbe55f1904b76a3b23228023a80e6 /meta/packages/tasks | |
parent | ce8cb734a047550998ad25cd911d2af44e2d2bca (diff) | |
download | poky-fb92046d99d763195b15f819c5b94049df6d7da4.tar.gz |
task-poky-tools: fix RDEPENDS_task-poky-tools-profile_qemux86
Change
RDEPENDS_task-poky-tools-profile_qemux86 += "valgrind"
to
RDEPENDS_append_task-poky-tools-profile_qemux86 = "valgrind", or else
RDEPENDS_task-poky-tools-profile would be overriden and only holds valgrind,
as a result, the 5 packages oprofile/oprofileui-server/powertop/... aren't
built into the target image at all.
Thanks Kevin a lot for tracking the issue down.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/packages/tasks')
-rw-r--r-- | meta/packages/tasks/task-poky-tools.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/tasks/task-poky-tools.bb b/meta/packages/tasks/task-poky-tools.bb index 7c539c0764..129a7d66db 100644 --- a/meta/packages/tasks/task-poky-tools.bb +++ b/meta/packages/tasks/task-poky-tools.bb | |||
@@ -44,7 +44,7 @@ RDEPENDS_task-poky-tools-profile = "\ | |||
44 | # exmap-server | 44 | # exmap-server |
45 | 45 | ||
46 | 46 | ||
47 | RDEPENDS_task-poky-tools-profile_qemux86 += "valgrind" | 47 | RDEPENDS_append_task-poky-tools-profile_qemux86 = "valgrind" |
48 | 48 | ||
49 | RRECOMMENDS_task-poky-tools-profile = "\ | 49 | RRECOMMENDS_task-poky-tools-profile = "\ |
50 | kernel-module-oprofile" | 50 | kernel-module-oprofile" |