From: Ed Bartosh Date: Tue, 19 Apr 2016 13:54:39 +0000 (+0300) Subject: bitbake: main: fix processing of BBEVENTLOG X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7980b60890c05e055ec76a403a21cb673525319;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: main: fix processing of BBEVENTLOG Fixed typo that caused incorrect processing of BBEVENTLOG environment variable. Even if variable is set it was ignored by bitbake. (Bitbake rev: 2705b5f59aef4a070e2df2752d27bd04ea747057) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index a28c7514dfe..e3021736963 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py @@ -247,7 +247,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): if "BBTOKEN" in os.environ: options.xmlrpctoken = os.environ["BBTOKEN"] - if "BBEVENTLOG" is os.environ: + if "BBEVENTLOG" in os.environ: options.writeeventlog = os.environ["BBEVENTLOG"] # fill in proper log name if not supplied