summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-08-27 11:00:33 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-27 11:16:58 +0100
commit8d134e999e6d84c2046225c406f9f46325101ca5 (patch)
tree37731dc1f95591208934668ab2ee2d2c3df9dacd /bitbake
parenta552fdceeb812a11da869bf4f7f5218e11f100a6 (diff)
downloadast2050-yocto-poky-8d134e999e6d84c2046225c406f9f46325101ca5.zip
ast2050-yocto-poky-8d134e999e6d84c2046225c406f9f46325101ca5.tar.gz
bitbake: bitbake/event.py: UIhandler filter should work without a mask
The default for the mask will be * (all the handlers) (Bitbake rev: 4c95e5f46cf2a656100bbf5a0e5a09d506abf9b9) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 1169cbf..67cfcea 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -237,7 +237,7 @@ class UIEventFilter(object):
return True
return False
eid = str(event.__class__)[8:-2]
- if eid not in self.eventmask:
+ if self.eventmask and eid not in self.eventmask:
return False
return True
OpenPOWER on IntegriCloud