diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-07 18:08:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-07 18:09:01 +0000 |
commit | c607095894cab60493ddfc4b967b0325e1c313b4 (patch) | |
tree | 1345b3418748d6791d4c6281efc3a141ccc36eb8 /bitbake | |
parent | e3532498df982f69981bef8627f68f71b393a9f9 (diff) | |
download | poky-c607095894cab60493ddfc4b967b0325e1c313b4.tar.gz |
bitbake: Revert "BBHandler: Ensure parser state engine is correctly reset for new parsing"
This reverts commit 3dc5e896a97154914cee6c47900e3bb2a2627cdb.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index c4e579d073..2e0647b5df 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py | |||
@@ -107,15 +107,14 @@ def get_statements(filename, absolute_filename, base_name): | |||
107 | return statements | 107 | return statements |
108 | 108 | ||
109 | def handle(fn, d, include): | 109 | def handle(fn, d, include): |
110 | global __func_start_regexp__, __inherit_regexp__, __export_func_regexp__, __addtask_regexp__, __addhandler_regexp__, __infunc__, __body__, __residue__, __inpython__, classes | 110 | global __func_start_regexp__, __inherit_regexp__, __export_func_regexp__, __addtask_regexp__, __addhandler_regexp__, __infunc__, __body__, __residue__ |
111 | __body__ = [] | 111 | __body__ = [] |
112 | __infunc__ = "" | 112 | __infunc__ = "" |
113 | __classname__ = "" | 113 | __classname__ = "" |
114 | __residue__ = [] | 114 | __residue__ = [] |
115 | __inpython__ = False | 115 | |
116 | 116 | ||
117 | if include == 0: | 117 | if include == 0: |
118 | classes = [ None, ] | ||
119 | logger.debug(2, "BB %s: handle(data)", fn) | 118 | logger.debug(2, "BB %s: handle(data)", fn) |
120 | else: | 119 | else: |
121 | logger.debug(2, "BB %s: handle(data, include)", fn) | 120 | logger.debug(2, "BB %s: handle(data, include)", fn) |