diff options
author | Olof Johansson <olof.johansson@axis.com> | 2016-01-27 11:14:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-30 11:37:00 +0000 |
commit | 5c35883efcf8ad61b2630b04638d1a7382525fd1 (patch) | |
tree | c216e9ebd88a9c28bbd358b2c21eb10f9c19450a /scripts/bitbake-whatchanged | |
parent | 7881c02aa74db54534ff4491eb38f7c0aa99ffc6 (diff) | |
download | poky-5c35883efcf8ad61b2630b04638d1a7382525fd1.tar.gz |
bitbake-whatchanged: avoid double do_ task name prefix
When used with --verbose, the heading for each task looks like
=== The verbose changes of example.do_do_compile:
This should instead be
=== The verbose changes of example.do_compile:
(From OE-Core rev: 628ad5e06d1136809d110a71148721095cb084dc)
Signed-off-by: Olof Johansson <olof.johansson@axis.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/bitbake-whatchanged')
-rwxr-xr-x | scripts/bitbake-whatchanged | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bitbake-whatchanged b/scripts/bitbake-whatchanged index 55cfe4b234..af54d16f8b 100755 --- a/scripts/bitbake-whatchanged +++ b/scripts/bitbake-whatchanged | |||
@@ -190,7 +190,7 @@ def print_depchanged(d_new = None, d_old = None, verbose = False): | |||
190 | if sigdata_re.match(full_path_old) and sigdata_re.match(full_path_new): | 190 | if sigdata_re.match(full_path_old) and sigdata_re.match(full_path_new): |
191 | output = bb.siggen.compare_sigfiles(full_path_old, full_path_new) | 191 | output = bb.siggen.compare_sigfiles(full_path_old, full_path_new) |
192 | if output: | 192 | if output: |
193 | print("\n=== The verbose changes of %s.do_%s:" % (pn, task)) | 193 | print("\n=== The verbose changes of %s.%s:" % (pn, task)) |
194 | print('\n'.join(output)) | 194 | print('\n'.join(output)) |
195 | else: | 195 | else: |
196 | # Format the output, the format is: | 196 | # Format the output, the format is: |