diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index 85c27c24cc..03109dfbb2 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py | |||
@@ -148,7 +148,7 @@ def handle(fn, d, include): | |||
148 | statements = get_statements(fn, abs_fn, base_name) | 148 | statements = get_statements(fn, abs_fn, base_name) |
149 | 149 | ||
150 | # DONE WITH PARSING... time to evaluate | 150 | # DONE WITH PARSING... time to evaluate |
151 | if ext != ".bbclass": | 151 | if ext != ".bbclass" and abs_fn != oldfile: |
152 | d.setVar('FILE', abs_fn) | 152 | d.setVar('FILE', abs_fn) |
153 | 153 | ||
154 | try: | 154 | try: |
@@ -166,7 +166,7 @@ def handle(fn, d, include): | |||
166 | if ext != ".bbclass" and include == 0: | 166 | if ext != ".bbclass" and include == 0: |
167 | return ast.multi_finalize(fn, d) | 167 | return ast.multi_finalize(fn, d) |
168 | 168 | ||
169 | if oldfile: | 169 | if ext != ".bbclass" and oldfile and abs_fn != oldfile: |
170 | d.setVar("FILE", oldfile) | 170 | d.setVar("FILE", oldfile) |
171 | 171 | ||
172 | return d | 172 | return d |