From 56b7d78a034187f66e08f3b3e2de55bd878cf9b5 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Sat, 18 Nov 2006 16:55:13 +0000 Subject: 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 --- packages/apache/apache_2.0.54.bb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'packages/apache') diff --git a/packages/apache/apache_2.0.54.bb b/packages/apache/apache_2.0.54.bb index 7f714724db..ff0f23e010 100644 --- a/packages/apache/apache_2.0.54.bb +++ b/packages/apache/apache_2.0.54.bb @@ -82,10 +82,10 @@ do_install_append () { } python () { - # Don't build apache unless we are building nativly - target = bb.data.getVar("TARGET_ARCH", d, 1) - build = bb.data.getVar("BUILD_ARCH", d, 1) - if target != build: - raise bb.parse.SkipPackage("Apache will only build nativly (TARGET_ARCH == BUILD_ARCH)") + # Don't build apache unless we are building nativly + target = bb.data.getVar("TARGET_ARCH", d, 1) + build = bb.data.getVar("BUILD_ARCH", d, 1) + if target != build: + raise bb.parse.SkipPackage("Apache will only build nativly (TARGET_ARCH == BUILD_ARCH)") } -- cgit v1.2.3