aboutsummaryrefslogtreecommitdiffstats
path: root/classes/tinderclient.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2007-03-07 23:02:23 +0000
committerRichard Purdie <rpurdie@rpsys.net>2007-03-07 23:02:23 +0000
commit1e677d83dfd89840777e5e458e384df1a2d8bfab (patch)
tree9aaa43b089fa1999839c371bbc669703655074b7 /classes/tinderclient.bbclass
parent8775f12f93346e3b83d4bd8927f9adb26633fa09 (diff)
downloadopenembedded-1e677d83dfd89840777e5e458e384df1a2d8bfab.tar.gz
tinderclient.bbclass: Add hacky workaround for bitbake 1.8.x (pending rewrite in 1.9)
Diffstat (limited to 'classes/tinderclient.bbclass')
-rw-r--r--classes/tinderclient.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass
index 3f5183cc8f..d1d9f49fac 100644
--- a/classes/tinderclient.bbclass
+++ b/classes/tinderclient.bbclass
@@ -371,6 +371,10 @@ addhandler tinderclient_eventhandler
python tinderclient_eventhandler() {
from bb import note, error, data
from bb.event import NotHandled
+
+ if e.data is None:
+ return NotHandled
+
do_tinder_report = data.getVar('TINDER_REPORT', e.data, True)
if do_tinder_report and do_tinder_report == "1":
tinder_do_tinder_report(e)