[oe-commits] [bitbake] branch 1.30 updated: main: fix processing of BBEVENTLOG

git at git.openembedded.org git at git.openembedded.org
Tue Apr 19 16:31:37 UTC 2016


rpurdie pushed a commit to branch 1.30
in repository bitbake.

The following commit(s) were added to refs/heads/1.30 by this push:
       new  2705b5f   main: fix processing of BBEVENTLOG
2705b5f is described below

commit 2705b5f59aef4a070e2df2752d27bd04ea747057
Author: Ed Bartosh <ed.bartosh at linux.intel.com>
AuthorDate: Tue Apr 19 16:54:39 2016 +0300

    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.
    
    Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/main.py b/lib/bb/main.py
index a28c751..e302173 100755
--- a/lib/bb/main.py
+++ b/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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list