diff options
| author | Holger Freyther <ich@tamarin.(none)> | 2009-05-19 09:37:41 +0200 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-02-15 17:07:42 +0000 |
| commit | 8072cf0846db54248e912114a8604c444cecc42a (patch) | |
| tree | 77e6146209be36024bd4eb9ae22af830f13afd1b /bitbake/lib/bb/parse/ast.py | |
| parent | 118161f46b8219f52779ee5a8dfc632a8964e3c0 (diff) | |
| download | poky-8072cf0846db54248e912114a8604c444cecc42a.tar.gz | |
bitbake: [parser] Call eval and remove non ast code
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
| -rw-r--r-- | bitbake/lib/bb/parse/ast.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index a995b9d3ed..f587c6cbd6 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py | |||
| @@ -131,8 +131,7 @@ def handleInclude(statements, m, fn, lineno, data, force): | |||
| 131 | def handleExport(statements, m, data): | 131 | def handleExport(statements, m, data): |
| 132 | # AST handling | 132 | # AST handling |
| 133 | statements.append(ExportNode(m.group(1))) | 133 | statements.append(ExportNode(m.group(1))) |
| 134 | 134 | statements[-1].eval(data) | |
| 135 | bb.data.setVarFlag(m.group(1), "export", 1, data) | ||
| 136 | 135 | ||
| 137 | def handleData(statements, groupd, data): | 136 | def handleData(statements, groupd, data): |
| 138 | # AST handling | 137 | # AST handling |
