aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-21 17:47:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-22 07:45:42 +0100
commitf1fa4bb3066e2bbaff0b69088ba5c6c6c597b93d (patch)
tree5d0cdc179ca83d688ca1171cb750c61314087da1
parent2302b5316091dff189e6c3f546341b2274ed9d0a (diff)
downloadbitbake-contrib-f1fa4bb3066e2bbaff0b69088ba5c6c6c597b93d.tar.gz
codeparser: Update debug variable reference
The code has changed and the debug message didn't work. Fix it. The output is still incredibly useful. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/codeparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/codeparser.py b/lib/bb/codeparser.py
index d6b810258..eabeda591 100644
--- a/lib/bb/codeparser.py
+++ b/lib/bb/codeparser.py
@@ -82,7 +82,7 @@ def add_module_functions(fn, functions, namespace):
execs.remove(e)
execs.add(namespace + "." + e)
modulecode_deps[name] = [parser.references.copy(), execs, parser.var_execs.copy(), parser.contains.copy()]
- #bb.warn("%s: %s\nRefs:%s Execs: %s %s %s" % (name, src, parser.references, parser.execs, parser.var_execs, parser.contains))
+ #bb.warn("%s: %s\nRefs:%s Execs: %s %s %s" % (name, fn, parser.references, parser.execs, parser.var_execs, parser.contains))
def update_module_dependencies(d):
for mod in modulecode_deps: