summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-10-11 11:43:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-12 08:58:48 +0100
commit846b7c388738f382e83576e77b705aa547c1dd9b (patch)
tree25d1b4d1eeb2f7c971007888c99d08a08cca0089 /bitbake
parent732007cbb627f648ce536554c28471f9acd58e9e (diff)
downloadpoky-846b7c388738f382e83576e77b705aa547c1dd9b.tar.gz
bitbake: lib/bb/siggen.py: log when tainting the signature of a task
Log a note when applying a taint to a task signature (e.g. when using the -f or -C command line options) so that the user knows this has been done. (Bitbake rev: 0fd960fdea83874eedb541cbc2920257e0f3fb81) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/siggen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 4a0af94b45..70ae06285a 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -254,6 +254,7 @@ class SignatureGeneratorBasicHash(SignatureGeneratorBasic):
254 return ("%s.%s.%s.%s" % (stampbase, taskname, h, extrainfo)).rstrip('.') 254 return ("%s.%s.%s.%s" % (stampbase, taskname, h, extrainfo)).rstrip('.')
255 255
256 def invalidate_task(self, task, d, fn): 256 def invalidate_task(self, task, d, fn):
257 bb.note("Tainting hash to force rebuild of task %s, %s" % (fn, task))
257 bb.build.write_taint(task, d, fn) 258 bb.build.write_taint(task, d, fn)
258 259
259def dump_this_task(outfile, d): 260def dump_this_task(outfile, d):