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-29 18:14:53 +0000 |
commit | 628ad5e06d1136809d110a71148721095cb084dc (patch) | |
tree | b277b734684cb17c25116d6ad75a82fea96d9bb0 /scripts/bitbake-whatchanged | |
parent | 4ae53085b173ed57acacebcd3e199abe2cb77a60 (diff) | |
download | openembedded-core-contrib-628ad5e06d1136809d110a71148721095cb084dc.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:
Signed-off-by: Olof Johansson <olof.johansson@axis.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
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 55cfe4b234e..af54d16f8b5 100755 --- a/scripts/bitbake-whatchanged +++ b/scripts/bitbake-whatchanged @@ -190,7 +190,7 @@ def print_depchanged(d_new = None, d_old = None, verbose = False): if sigdata_re.match(full_path_old) and sigdata_re.match(full_path_new): output = bb.siggen.compare_sigfiles(full_path_old, full_path_new) if output: - print("\n=== The verbose changes of %s.do_%s:" % (pn, task)) + print("\n=== The verbose changes of %s.%s:" % (pn, task)) print('\n'.join(output)) else: # Format the output, the format is: |