diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-10-04 01:52:51 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-10-13 08:38:13 +0100 |
commit | 74016daa3a9131129974463452221e4a740bb860 (patch) | |
tree | 645f3e1e344d531e5e380c491505087c6f9090b5 /bitbake-dev/lib/bb/parse | |
parent | dbf6a79be28ab6a3d66dd562e56b8207463f9109 (diff) | |
download | poky-74016daa3a9131129974463452221e4a740bb860.tar.gz |
bitbake: Remove unused and hence pointless internal__functions__ variable
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake-dev/lib/bb/parse')
-rw-r--r-- | bitbake-dev/lib/bb/parse/parse_py/BBHandler.py | 7 |
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 | ||