summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-04-19 16:54:39 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-19 17:31:01 +0100
commitc7980b60890c05e055ec76a403a21cb673525319 (patch)
tree98fdd1093501142f60b7d32b71be8814243ea5c5 /bitbake
parentee25d0e3987d7732a2e46e1640693b4cf419a9fc (diff)
downloadpoky-c7980b60890c05e055ec76a403a21cb673525319.tar.gz
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 <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index a28c7514df..e302173696 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -247,7 +247,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
247 if "BBTOKEN" in os.environ: 247 if "BBTOKEN" in os.environ:
248 options.xmlrpctoken = os.environ["BBTOKEN"] 248 options.xmlrpctoken = os.environ["BBTOKEN"]
249 249
250 if "BBEVENTLOG" is os.environ: 250 if "BBEVENTLOG" in os.environ:
251 options.writeeventlog = os.environ["BBEVENTLOG"] 251 options.writeeventlog = os.environ["BBEVENTLOG"]
252 252
253 # fill in proper log name if not supplied 253 # fill in proper log name if not supplied