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:22 +0100 |
commit | bff73743280f9eafebe4591f7368ead91a4eb74d (patch) | |
tree | 59ebd0fa20f3e0345951c097ea69d6a485249190 /meta/conf/distro/include/tcmode-external-sourcery.inc | |
parent | 8b90f1becd40a7f857d2fbe30eaffe218a976419 (diff) | |
download | openembedded-core-bff73743280f9eafebe4591f7368ead91a4eb74d.tar.gz openembedded-core-bff73743280f9eafebe4591f7368ead91a4eb74d.tar.bz2 openembedded-core-bff73743280f9eafebe4591f7368ead91a4eb74d.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro/include/tcmode-external-sourcery.inc')
-rw-r--r-- | meta/conf/distro/include/tcmode-external-sourcery.inc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/meta/conf/distro/include/tcmode-external-sourcery.inc b/meta/conf/distro/include/tcmode-external-sourcery.inc index 098c724e02..53e6653e79 100644 --- a/meta/conf/distro/include/tcmode-external-sourcery.inc +++ b/meta/conf/distro/include/tcmode-external-sourcery.inc @@ -79,9 +79,6 @@ EXTERNAL_TOOLCHAIN_SYSROOT_CMD += "${@csl_multilib_arg(d)}" # to our staging toolchain bindir. python toolchain_metadata_setup () { - if not isinstance(e, bb.event.ConfigParsed): - return - d = e.data l = d.createCopy() @@ -90,17 +87,16 @@ python toolchain_metadata_setup () { d.setVar('TOOLCHAIN_PATH_ADD', '') } addhandler toolchain_metadata_setup +toolchain_metadata_setup[eventmask] = "bb.event.ConfigParsed" python toolchain_setup () { - if not isinstance(e, bb.event.BuildStarted): - return - d = e.data if not d.getVar('TOOLCHAIN_PATH_ADD', True): populate_toolchain_links(d) } addhandler toolchain_setup +toolchain_setup[eventmask] = "bb.event.BuildStarted" def populate_toolchain_links(d): import errno |