[bitbake-devel] [PATCH] bitbake/event.py: UIhandler filter should work without a mask

Cristiana Voicu cristiana.voicu at intel.com
Tue Aug 27 08:00:33 UTC 2013


The default for the mask will be * (all the handlers)

Signed-off-by: Cristiana Voicu <cristiana.voicu at intel.com>
---
 bitbake/lib/bb/event.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 
-- 
1.7.9.5




More information about the bitbake-devel mailing list