diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-06-15 15:17:36 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-17 12:35:51 +0100 |
commit | 194b395f85dbed216b7dd51e66f8b567955307f2 (patch) | |
tree | ce78fa117d44eb42f308595bc509d1ecb8dc38f3 | |
parent | fee1032ab4213d17a53cc3f35272e06efd22b2ae (diff) | |
download | poky-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>
-rw-r--r-- | meta/classes/distrodata.bbclass | 4 |
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 | ||
198 | addhandler checkpkg_eventhandler | 198 | addhandler checkpkg_eventhandler |
199 | checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted" | 199 | checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted" |
200 | python checkpkg_eventhandler() { | 200 | python 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 | ||
795 | addhandler distro_check_eventhandler | 795 | addhandler distro_check_eventhandler |
796 | distro_check_eventhandler bb.event.BuildStarted | 796 | distro_check_eventhandler[eventmask] = "bb.event.BuildStarted" |
797 | python distro_check_eventhandler() { | 797 | python 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 |