summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-22 17:23:38 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-23 12:14:42 +0000
commit93395559c9dda734a3dec9ffd9bb2156a71a2c17 (patch)
tree8256a8d24e29f97e7e12eb923d2d271a9daa1efb
parentdcf52157d3635925491783be656c6b76d1efe1a4 (diff)
downloadbitbake-93395559c9dda734a3dec9ffd9bb2156a71a2c17.tar.gz
siggen: Improve ambiguous use of 'dependent'
I'd never spotted this until it was pointed out but the task isn't dependent, it is a dependency. Fix this confusing reference. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index ebba45259..96e16a45f 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -1002,7 +1002,7 @@ def compare_sigfiles(a, b, recursecb=None, color=False, collapsed=False):
if changed:
for dep in sorted(changed):
if not collapsed:
- output.append(color_format("{color_title}Hash for dependent task %s changed{color_default} from %s to %s") % (clean_basepath(dep), a[dep], b[dep]))
+ output.append(color_format("{color_title}Hash for task dependency %s changed{color_default} from %s to %s") % (clean_basepath(dep), a[dep], b[dep]))
if callable(recursecb):
recout = recursecb(dep, a[dep], b[dep])
if recout: