[bitbake-devel] [PATCH] parse/ast: Mark anonymous functions as python functions

Richard Purdie richard.purdie at linuxfoundation.org
Tue Feb 2 13:54:37 UTC 2016


Anonymous functions are python functions, set the variable
flags as such so we can detect them and avoid expansion where
needed.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index cff0d2b..1c5b9d1 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -156,8 +156,8 @@ class MethodNode(AstNode):
             anonfuncs = data.getVar('__BBANONFUNCS', False) or []
             anonfuncs.append(funcname)
             data.setVar('__BBANONFUNCS', anonfuncs)
-        else:
-            data.setVarFlag(self.func_name, "func", 1)
+            data.setVarFlag(funcname, "python", 1)
+        data.setVarFlag(funcname, "func", 1)
         data.setVar(funcname, text, parsing=True)
         data.setVarFlag(funcname, 'filename', self.filename)
         data.setVarFlag(funcname, 'lineno', str(self.lineno - len(self.body)))





More information about the bitbake-devel mailing list