diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-22 12:51:29 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-25 14:57:16 +0100 |
| commit | 15a31a93ba382037786aaf9d8105d8cf10c278c0 (patch) | |
| tree | d534ac2e534a61d0549b87c3239f764e081656e1 /bitbake/lib/bb/build.py | |
| parent | be98c1fc299a3e5355e1d864c9a3f5d1fdf21d9c (diff) | |
| download | poky-15a31a93ba382037786aaf9d8105d8cf10c278c0.tar.gz | |
bitbake: taskdata.py: Add support for rdepends task flag
Currently its not possible to add arbitrary RDEPENDS to a specific task.
This can be useful and this patch adds functionality equivalent to the
'depends' task flag.
(Bitbake rev: db65080a6199baecc5c422294a4c4a9fd12dc29e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
| -rw-r--r-- | bitbake/lib/bb/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index a0a7dd4e12..2cb7a9301b 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
| @@ -543,6 +543,7 @@ def add_tasks(tasklist, d): | |||
| 543 | deptask = data.expand(flags[name], d) | 543 | deptask = data.expand(flags[name], d) |
| 544 | task_deps[name][task] = deptask | 544 | task_deps[name][task] = deptask |
| 545 | getTask('depends') | 545 | getTask('depends') |
| 546 | getTask('rdepends') | ||
| 546 | getTask('deptask') | 547 | getTask('deptask') |
| 547 | getTask('rdeptask') | 548 | getTask('rdeptask') |
| 548 | getTask('recrdeptask') | 549 | getTask('recrdeptask') |
