diff options
author | Holger Freyther <zecke@selfish.org> | 2006-11-18 16:55:13 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-11-18 16:55:13 +0000 |
commit | 56b7d78a034187f66e08f3b3e2de55bd878cf9b5 (patch) | |
tree | d6f4033c0064f41c2205502d10c651e8710c96aa /packages/images | |
parent | 9e61974759ef6e4ff9538a33bab0e82b1b4381dd (diff) |
Micro-Optimisation decreasing initial parsing time by 10%
python () {} and python __anonymous () {} are as the same
says functions without a name. They get executed when the
main bb file is completely parsed. This is used to set
information like FILESDIR.
This is a python method so it gets evaled which means compiled
and executed a lot of times. By moving the code of the anonfunc
into a proper method this is only compiled once. The result is
is the 10% speed up when parsing.
Reindent anonfuncs and new defs without tabs and four spaces
Diffstat (limited to 'packages/images')
-rw-r--r-- | packages/images/slugos-image.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/images/slugos-image.bb b/packages/images/slugos-image.bb index 231dcd8891..388a97583f 100644 --- a/packages/images/slugos-image.bb +++ b/packages/images/slugos-image.bb @@ -98,10 +98,10 @@ IPKG_INSTALL = "${RDEPENDS}" inherit image_ipk python () { - # Don't build slugos images unless the configuration is set up - # for an image build! - if bb.data.getVar("SLUGOS_IMAGENAME", d, 1) == '' or bb.data.getVar("SLUGOS_IMAGESEX", d, 1) == '': - raise bb.parse.SkipPackage("absent or broken SlugOS configuration") + # Don't build slugos images unless the configuration is set up + # for an image build! + if bb.data.getVar("SLUGOS_IMAGENAME", d, 1) == '' or bb.data.getVar("SLUGOS_IMAGESEX", d, 1) == '': + raise bb.parse.SkipPackage("absent or broken SlugOS configuration") } #-------------------------------------------------------------------------------- |