diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-11 12:52:57 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-11 12:52:57 +0100 |
commit | ff539b11acca9831b72f3bc951a6ef20cd293786 (patch) | |
tree | d127343f934d16516f0feeebb76e17ea8164ce3e /bitbake/lib/bb | |
parent | efe55d749ac0201d32587d94670fea46c8a98728 (diff) | |
download | poky-ff539b11acca9831b72f3bc951a6ef20cd293786.tar.gz |
bitbake-runtask: Ensure logging options are inherited from the parent
[BUGID #291]
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 22b779436e..978e429d58 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -719,6 +719,9 @@ class RunQueueData: | |||
719 | deps.append(self.taskData.fn_index[self.runq_fnid[dep]] + "." + self.runq_task[dep]) | 719 | deps.append(self.taskData.fn_index[self.runq_fnid[dep]] + "." + self.runq_task[dep]) |
720 | hashdata["deps"][self.taskData.fn_index[self.runq_fnid[task]] + "." + self.runq_task[task]] = deps | 720 | hashdata["deps"][self.taskData.fn_index[self.runq_fnid[task]] + "." + self.runq_task[task]] = deps |
721 | 721 | ||
722 | hashdata["msg-debug"] = self.cooker.configuration.debug | ||
723 | hashdata["msg-debug-domains"] = self.cooker.configuration.debug_domains | ||
724 | |||
722 | # Write out the hashes into a file for use by the individual tasks | 725 | # Write out the hashes into a file for use by the individual tasks |
723 | self.hashfile = bb.data.expand("${TMPDIR}/cache/hashdata.dat", self.cooker.configuration.data) | 726 | self.hashfile = bb.data.expand("${TMPDIR}/cache/hashdata.dat", self.cooker.configuration.data) |
724 | p = pickle.Pickler(file(self.hashfile, "wb"), -1) | 727 | p = pickle.Pickler(file(self.hashfile, "wb"), -1) |