aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-01-19 09:47:36 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-01-19 09:47:36 +0000
commit3162f336ed21b2646a82b0b87132656cbb59fc81 (patch)
treeabb56242af3d0a89f6b61e56ab6ea5be49a733d0 /lib/bb/parse
parent19a6dc1fe6e6a0d957710197e4420a3fc2b821f4 (diff)
downloadbitbake-3162f336ed21b2646a82b0b87132656cbb59fc81.tar.gz
event.py: Pass the datastore to the fire command, don't build it into events
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'lib/bb/parse')
-rw-r--r--lib/bb/parse/parse_py/BBHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/parse/parse_py/BBHandler.py b/lib/bb/parse/parse_py/BBHandler.py
index f0c340956..f34599136 100644
--- a/lib/bb/parse/parse_py/BBHandler.py
+++ b/lib/bb/parse/parse_py/BBHandler.py
@@ -114,7 +114,7 @@ def finalise(fn, d):
tasklist = data.getVar('__BBTASKS', d) or []
bb.build.add_tasks(tasklist, d)
- bb.event.fire(bb.event.RecipeParsed(fn, d))
+ bb.event.fire(bb.event.RecipeParsed(fn), d)
def handle(fn, d, include = 0):