From: Richard Purdie Date: Wed, 22 Aug 2012 19:01:55 +0000 (+0100) Subject: bitbake: ast: Store anonymous python function contents in the datstore X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e59ae05c1c5215c43b2e8a5e89ad6a5d63540c1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: ast: Store anonymous python function contents in the datstore This is useful if we need to disable part of one during a backtrace for debugging purposes. (Bitbake rev: 80a0c1b06a30a6ba9977c29fac0437a208d8cbbc) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index dfc0b022455..4caa93e044f 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py @@ -134,6 +134,7 @@ class MethodNode(AstNode): anonfuncs = data.getVar('__BBANONFUNCS') or [] anonfuncs.append(funcname) data.setVar('__BBANONFUNCS', anonfuncs) + data.setVar(funcname, text) else: data.setVarFlag(self.func_name, "func", 1) data.setVar(self.func_name, text)