aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorHolger Freyther <ich@tamarin.(none)>2009-05-19 09:37:41 +0200
committerRichard Purdie <rpurdie@linux.intel.com>2010-02-15 17:07:42 +0000
commit8072cf0846db54248e912114a8604c444cecc42a (patch)
tree77e6146209be36024bd4eb9ae22af830f13afd1b /bitbake/lib/bb/parse/ast.py
parent118161f46b8219f52779ee5a8dfc632a8964e3c0 (diff)
downloadopenembedded-core-contrib-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.py3
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):
def handleExport(statements, m, data):
# AST handling
statements.append(ExportNode(m.group(1)))
-
- bb.data.setVarFlag(m.group(1), "export", 1, data)
+ statements[-1].eval(data)
def handleData(statements, groupd, data):
# AST handling