From 1e59ae05c1c5215c43b2e8a5e89ad6a5d63540c1 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 22 Aug 2012 20:01:55 +0100 Subject: 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 --- bitbake/lib/bb/parse/ast.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib/bb') diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index dfc0b02245..4caa93e044 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) -- cgit v1.2.3-54-g00ecf