diff options
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
-rw-r--r-- | bitbake/lib/bb/parse/ast.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index 49a0788038..3250211e60 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py | |||
@@ -53,10 +53,9 @@ class IncludeAllNode(AstNode): | |||
53 | Include the file and evaluate the statements | 53 | Include the file and evaluate the statements |
54 | """ | 54 | """ |
55 | s = data.expand(self.what_file) | 55 | s = data.expand(self.what_file) |
56 | logger.debug2("CONF %s:%s: including %s", self.filename, self.lineno, s) | 56 | logger.debug2("CONF %s:%s: including all %s", self.filename, self.lineno, s) |
57 | 57 | ||
58 | for path in data.getVar("BBPATH").split(":"): | 58 | bb.parse.ConfHandler.include(self.filename, s, self.lineno, data, False, all=True) |
59 | bb.parse.ConfHandler.include(self.filename, os.path.join(path, s), self.lineno, data, False) | ||
60 | 59 | ||
61 | class ExportNode(AstNode): | 60 | class ExportNode(AstNode): |
62 | def __init__(self, filename, lineno, var): | 61 | def __init__(self, filename, lineno, var): |