diff options
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
| -rw-r--r-- | bitbake/lib/bb/parse/ast.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index 0714296af2..c8802c0587 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py | |||
| @@ -97,6 +97,7 @@ class DataNode(AstNode): | |||
| 97 | def eval(self, data): | 97 | def eval(self, data): |
| 98 | groupd = self.groupd | 98 | groupd = self.groupd |
| 99 | key = groupd["var"] | 99 | key = groupd["var"] |
| 100 | key = key.replace(":", "_") | ||
| 100 | loginfo = { | 101 | loginfo = { |
| 101 | 'variable': key, | 102 | 'variable': key, |
| 102 | 'file': self.filename, | 103 | 'file': self.filename, |
| @@ -207,6 +208,7 @@ class ExportFuncsNode(AstNode): | |||
| 207 | def eval(self, data): | 208 | def eval(self, data): |
| 208 | 209 | ||
| 209 | for func in self.n: | 210 | for func in self.n: |
| 211 | func = func.replace(":", "_") | ||
| 210 | calledfunc = self.classname + "_" + func | 212 | calledfunc = self.classname + "_" + func |
| 211 | 213 | ||
| 212 | if data.getVar(func, False) and not data.getVarFlag(func, 'export_func', False): | 214 | if data.getVar(func, False) and not data.getVarFlag(func, 'export_func', False): |
