diff options
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index fe918a41f3..f89ad24273 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py | |||
@@ -144,7 +144,7 @@ def handle(fn, d, include): | |||
144 | try: | 144 | try: |
145 | statements.eval(d) | 145 | statements.eval(d) |
146 | except bb.parse.SkipRecipe: | 146 | except bb.parse.SkipRecipe: |
147 | bb.data.setVar("__SKIPPED", True, d) | 147 | d.setVar("__SKIPPED", True) |
148 | if include == 0: | 148 | if include == 0: |
149 | return { "" : d } | 149 | return { "" : d } |
150 | 150 | ||