summaryrefslogtreecommitdiffstats
path: root/bitbake-dev
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake-dev')
-rw-r--r--bitbake-dev/lib/bb/parse/parse_py/BBHandler.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py b/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
index 5a128e8673..f92b31fd0a 100644
--- a/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
@@ -240,13 +240,6 @@ def feeder(lineno, s, fn, root, d):
240 if not root in __parsed_methods__: 240 if not root in __parsed_methods__:
241 text = '\n'.join(__body__) 241 text = '\n'.join(__body__)
242 methodpool.insert_method( root, text, fn ) 242 methodpool.insert_method( root, text, fn )
243 funcs = data.getVar('__functions__', d) or {}
244 if not funcs.has_key( root ):
245 funcs[root] = text
246 else:
247 funcs[root] = "%s\n%s" % (funcs[root], text)
248
249 data.setVar('__functions__', funcs, d)
250 __body__ = [] 243 __body__ = []
251 __inpython__ = False 244 __inpython__ = False
252 245