diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-12 16:31:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-14 12:55:47 +0100 |
commit | 53841ce521d44c0c9cca512675a12f81a491fe52 (patch) | |
tree | 98a2ca75581f4bb488e43087b6b9128017aac135 /meta/classes/native.bbclass | |
parent | 98abb113a02a4504ae969dbaf9844ab6539dcdb8 (diff) | |
download | poky-53841ce521d44c0c9cca512675a12f81a491fe52.tar.gz |
classes/conf: Add eventmasks for event handlers
Now that bitbake supports masking events for event handlers, lets use
this so event handlers are only called for events they care about. This
lets us simplify the code indentation a bit at least as well as mildly
improving the event handling performance.
(From OE-Core rev: bff73743280f9eafebe4591f7368ead91a4eb74d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index cd930f0702..04f0d06ad9 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -104,9 +104,6 @@ CLASSOVERRIDE = "class-native" | |||
104 | PATH_prepend = "${COREBASE}/scripts/native-intercept:" | 104 | PATH_prepend = "${COREBASE}/scripts/native-intercept:" |
105 | 105 | ||
106 | python native_virtclass_handler () { | 106 | python native_virtclass_handler () { |
107 | if not isinstance(e, bb.event.RecipePreFinalise): | ||
108 | return | ||
109 | |||
110 | classextend = e.data.getVar('BBCLASSEXTEND', True) or "" | 107 | classextend = e.data.getVar('BBCLASSEXTEND', True) or "" |
111 | if "native" not in classextend: | 108 | if "native" not in classextend: |
112 | return | 109 | return |
@@ -152,6 +149,7 @@ python native_virtclass_handler () { | |||
152 | } | 149 | } |
153 | 150 | ||
154 | addhandler native_virtclass_handler | 151 | addhandler native_virtclass_handler |
152 | native_virtclass_handler[eventmask] = "bb.event.RecipePreFinalise" | ||
155 | 153 | ||
156 | do_package[noexec] = "1" | 154 | do_package[noexec] = "1" |
157 | do_packagedata[noexec] = "1" | 155 | do_packagedata[noexec] = "1" |