diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-22 17:23:38 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-23 12:14:46 +0000 |
commit | d303f9c6ed5316ce8b750a413553ee462e1d20c2 (patch) | |
tree | e81f742c20d6162f91fcd01609327b8a783d61c8 /bitbake | |
parent | d4f430011dee3c067b648d7295923c159906e00e (diff) | |
download | poky-d303f9c6ed5316ce8b750a413553ee462e1d20c2.tar.gz |
bitbake: 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.
(Bitbake rev: 93395559c9dda734a3dec9ffd9bb2156a71a2c17)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/siggen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index ebba452592..96e16a45f8 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -1002,7 +1002,7 @@ def compare_sigfiles(a, b, recursecb=None, color=False, collapsed=False): | |||
1002 | if changed: | 1002 | if changed: |
1003 | for dep in sorted(changed): | 1003 | for dep in sorted(changed): |
1004 | if not collapsed: | 1004 | if not collapsed: |
1005 | 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])) | 1005 | 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])) |
1006 | if callable(recursecb): | 1006 | if callable(recursecb): |
1007 | recout = recursecb(dep, a[dep], b[dep]) | 1007 | recout = recursecb(dep, a[dep], b[dep]) |
1008 | if recout: | 1008 | if recout: |