diff options
| author | Richard Purdie <richard@openedhand.com> | 2008-05-21 21:20:44 +0000 | 
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2008-05-21 21:20:44 +0000 | 
| commit | 7b6f1b8aed3aa80d56d172f93e5c461cb9009c3f (patch) | |
| tree | bdc5705fed7b44c3ae06df6dd914bcbc47972e97 | |
| parent | 9d81637f62685fa9cfd7003b434c70a458f1a06b (diff) | |
| download | openembedded-core-7b6f1b8aed3aa80d56d172f93e5c461cb9009c3f.tar.gz openembedded-core-7b6f1b8aed3aa80d56d172f93e5c461cb9009c3f.tar.bz2 openembedded-core-7b6f1b8aed3aa80d56d172f93e5c461cb9009c3f.zip | |
build.py: Fix task override handling (breaks compatibility but it didn't work at all before)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4530 311d38ba-8fff-0310-9ca6-ca027cbcb966
| -rw-r--r-- | bitbake/lib/bb/build.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index b4efd269fd..7644bf0ee7 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py @@ -271,7 +271,7 @@ def exec_task(task, d):          bb.msg.debug(1, bb.msg.domain.Build, "Executing task %s" % task)          old_overrides = data.getVar('OVERRIDES', d, 0)          localdata = data.createCopy(d) -        data.setVar('OVERRIDES', 'task_%s:%s' % (task, old_overrides), localdata) +        data.setVar('OVERRIDES', 'task-%s:%s' % (task[3:], old_overrides), localdata)          data.update_data(localdata)          data.expandKeys(localdata)          event.fire(TaskStarted(task, localdata)) | 
