From ff539b11acca9831b72f3bc951a6ef20cd293786 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 11 Oct 2010 12:52:57 +0100 Subject: bitbake-runtask: Ensure logging options are inherited from the parent [BUGID #291] Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake/lib') 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: deps.append(self.taskData.fn_index[self.runq_fnid[dep]] + "." + self.runq_task[dep]) hashdata["deps"][self.taskData.fn_index[self.runq_fnid[task]] + "." + self.runq_task[task]] = deps + hashdata["msg-debug"] = self.cooker.configuration.debug + hashdata["msg-debug-domains"] = self.cooker.configuration.debug_domains + # Write out the hashes into a file for use by the individual tasks self.hashfile = bb.data.expand("${TMPDIR}/cache/hashdata.dat", self.cooker.configuration.data) p = pickle.Pickler(file(self.hashfile, "wb"), -1) -- cgit v1.2.3-54-g00ecf