summaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-03 14:30:20 +0100
committerChris Larson <chris_larson@mentor.com>2010-12-29 23:51:07 -0700
commitedbdf6fc89d915f06b62c5a06726e0e46a940d2e (patch)
treeefe55cd1fd1bdfebac50b140acaa088df65af2a5 /lib/bb/parse/ast.py
parent4b7aab109f746ad9be2699c0fb6f4a4e65d65936 (diff)
downloadbitbake-edbdf6fc89d915f06b62c5a06726e0e46a940d2e.tar.gz
data: Add emit_func and generate_dependencies
These functions allow generation of dependency data between functions and variables allowing moves to be made towards generating checksums and allowing use of the dependency information in other parts of bitbake. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'lib/bb/parse/ast.py')
-rw-r--r--lib/bb/parse/ast.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py
index 8cc166b02..8a02c10f6 100644
--- a/lib/bb/parse/ast.py
+++ b/lib/bb/parse/ast.py
@@ -323,6 +323,8 @@ def finalize(fn, d):
tasklist = bb.data.getVar('__BBTASKS', d) or []
bb.build.add_tasks(tasklist, d)
+ #bb.data.generate_dependencies(d)
+
bb.event.fire(bb.event.RecipeParsed(fn), d)
def _create_variants(datastores, names, function):