summaryrefslogtreecommitdiffstats
path: root/lib/bb/build.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-09-23 17:05:00 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-25 16:23:30 +0100
commitc6e88b7c0e61f9586a275df53f48b90687c5f92f (patch)
tree91260aba64fe69ba9583559d7fc46c9a7c0c8919 /lib/bb/build.py
parent00fc1d7249b5e217cc7c36ac71b63ddad1c5b769 (diff)
downloadbitbake-c6e88b7c0e61f9586a275df53f48b90687c5f92f.tar.gz
bitbake/lib/bb/msg.py: fix setting debug and verbosity levels
The debug and verbosity levels (as set by the -D and -v command line options respectively) were not being passed through within msg.py since bitbake revision 45aad2f9647df14bcfa5e755b57e1ddab377939a due to incorrect variable names. Fixes [YOCTO #1513]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'lib/bb/build.py')
-rw-r--r--lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index 420e02e2a..70cc80943 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -236,7 +236,7 @@ def exec_func_shell(function, d, runfile, cwd=None):
if fakerootcmd:
cmd = [fakerootcmd, runfile]
- if bb.msg.loggerVerbose:
+ if bb.msg.loggerDefaultVerbose:
logfile = LogTee(logger, sys.stdout)
else:
logfile = sys.stdout