aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2009-10-17 19:30:34 +0100
committerRichard Purdie <rpurdie@rpsys.net>2009-10-17 19:30:34 +0100
commit2a6abd3ee10a709de0d96d15ce9f232847ebda7a (patch)
treeb72fc90ee7bda6ae58bb4670e10445955fe6d1b3 /lib/bb/parse
parent0a6f8c8888bd6d50b99dd6074a2fdc63fda4cc8b (diff)
downloadbitbake-2a6abd3ee10a709de0d96d15ce9f232847ebda7a.tar.gz
BBHandler: Drop unused internal __functions__ variable
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'lib/bb/parse')
-rw-r--r--lib/bb/parse/parse_py/BBHandler.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/bb/parse/parse_py/BBHandler.py b/lib/bb/parse/parse_py/BBHandler.py
index 5b1b72eec..5be1dd8d3 100644
--- a/lib/bb/parse/parse_py/BBHandler.py
+++ b/lib/bb/parse/parse_py/BBHandler.py
@@ -236,13 +236,6 @@ def feeder(lineno, s, fn, root, d):
if not root in __parsed_methods__:
text = '\n'.join(__body__)
methodpool.insert_method( root, text, fn )
- funcs = data.getVar('__functions__', d) or {}
- if not funcs.has_key( root ):
- funcs[root] = text
- else:
- funcs[root] = "%s\n%s" % (funcs[root], text)
-
- data.setVar('__functions__', funcs, d)
__body__ = []
__inpython__ = False