summaryrefslogtreecommitdiffstats
path: root/meta/classes/distrodata.bbclass
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2013-06-15 15:17:36 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-17 12:35:51 +0100
commit194b395f85dbed216b7dd51e66f8b567955307f2 (patch)
treece78fa117d44eb42f308595bc509d1ecb8dc38f3 /meta/classes/distrodata.bbclass
parentfee1032ab4213d17a53cc3f35272e06efd22b2ae (diff)
downloadpoky-194b395f85dbed216b7dd51e66f8b567955307f2.tar.gz
distrodata.bbclass: fix syntax errors
Thes were added by the recent event handler changes. (From OE-Core rev: 166313ca2edd05f7d3472ba23ba6f44ae12a7d12) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/distrodata.bbclass')
-rw-r--r--meta/classes/distrodata.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass
index 3ff62684aa..907f78dc1c 100644
--- a/meta/classes/distrodata.bbclass
+++ b/meta/classes/distrodata.bbclass
@@ -196,7 +196,7 @@ do_distrodataall() {
196} 196}
197 197
198addhandler checkpkg_eventhandler 198addhandler checkpkg_eventhandler
199 checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted" 199checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted"
200python checkpkg_eventhandler() { 200python checkpkg_eventhandler() {
201 def parse_csv_file(filename): 201 def parse_csv_file(filename):
202 package_dict = {} 202 package_dict = {}
@@ -793,7 +793,7 @@ do_checkpkgall() {
793} 793}
794 794
795addhandler distro_check_eventhandler 795addhandler distro_check_eventhandler
796distro_check_eventhandler bb.event.BuildStarted 796distro_check_eventhandler[eventmask] = "bb.event.BuildStarted"
797python distro_check_eventhandler() { 797python distro_check_eventhandler() {
798 """initialize log files.""" 798 """initialize log files."""
799 import oe.distro_check as dc 799 import oe.distro_check as dc