[oe-commits] Laurentiu Palcu : distrodata.bbclass: fix syntax errors

git at git.openembedded.org git at git.openembedded.org
Mon Jun 17 11:29:01 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 166313ca2edd05f7d3472ba23ba6f44ae12a7d12
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=166313ca2edd05f7d3472ba23ba6f44ae12a7d12

Author: Laurentiu Palcu <laurentiu.palcu at intel.com>
Date:   Sat Jun 15 15:17:36 2013 +0300

distrodata.bbclass: fix syntax errors

Thes were added by the recent event handler changes.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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 3ff6268..907f78d 100644
--- a/meta/classes/distrodata.bbclass
+++ b/meta/classes/distrodata.bbclass
@@ -196,7 +196,7 @@ do_distrodataall() {
 }
 
 addhandler checkpkg_eventhandler
- checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted"
+checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted"
 python checkpkg_eventhandler() {
     def parse_csv_file(filename):
         package_dict = {}
@@ -793,7 +793,7 @@ do_checkpkgall() {
 }
 
 addhandler distro_check_eventhandler
-distro_check_eventhandler bb.event.BuildStarted
+distro_check_eventhandler[eventmask] = "bb.event.BuildStarted"
 python distro_check_eventhandler() {
     """initialize log files."""
     import oe.distro_check as dc



More information about the Openembedded-commits mailing list