From: Holger Freyther Date: Tue, 19 May 2009 07:37:41 +0000 (+0200) Subject: bitbake: [parser] Call eval and remove non ast code X-Git-Tag: 2011-1~6218 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8072cf0846db54248e912114a8604c444cecc42a;p=openembedded-core.git bitbake: [parser] Call eval and remove non ast code Signed-off-by: Richard Purdie --- 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