summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/bitbake')
-rwxr-xr-xbitbake/bin/bitbake5
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 324ee4fa53..e86d59bd62 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -214,6 +214,11 @@ Default BBFILES are the .bb files in the current directory.""")
214 if configuration.bind and configuration.servertype != "xmlrpc": 214 if configuration.bind and configuration.servertype != "xmlrpc":
215 sys.exit("FATAL: If '-B' or '--bind' is defined, we must set the servertype as 'xmlrpc'.\n") 215 sys.exit("FATAL: If '-B' or '--bind' is defined, we must set the servertype as 'xmlrpc'.\n")
216 216
217 if "BBDEBUG" in os.environ:
218 level = int(os.environ["BBDEBUG"])
219 if level > configuration.debug:
220 configuration.debug = level
221
217 bb.msg.init_msgconfig(configuration.verbose, configuration.debug, 222 bb.msg.init_msgconfig(configuration.verbose, configuration.debug,
218 configuration.debug_domains) 223 configuration.debug_domains)
219 224