diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-12 17:46:47 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-14 20:07:15 +0100 |
commit | 229b6630af72f2914d75ab6b0ba081b5feb25172 (patch) | |
tree | 67d7827f00bb2ab093e5c9cab6c728c34aceb05d /bitbake/lib/bb/runqueue.py | |
parent | fa914040550fdc8fd603eefad1f03d44b13fc611 (diff) | |
download | openembedded-core-229b6630af72f2914d75ab6b0ba081b5feb25172.tar.gz openembedded-core-229b6630af72f2914d75ab6b0ba081b5feb25172.tar.bz2 openembedded-core-229b6630af72f2914d75ab6b0ba081b5feb25172.tar.xz openembedded-core-229b6630af72f2914d75ab6b0ba081b5feb25172.zip |
bitbake-runtask: Ensure logging settings take effect in the worker process (and pass verbose setting)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 9befe976d..0d80a6934 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -721,6 +721,7 @@ class RunQueueData: hashdata["msg-debug"] = self.cooker.configuration.debug hashdata["msg-debug-domains"] = self.cooker.configuration.debug_domains + hashdata["verbose"] = self.cooker.configuration.verbose # 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) |