diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-20 09:16:34 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-20 09:16:34 +0000 |
commit | 8aee6b32a09dbbce304018f169eb6623182622c5 (patch) | |
tree | 24f1f9de0d57e15e126e840c6905805cbf9386a6 /meta/classes/multimachine.bbclass | |
parent | 8174ba42226d2e590879c0adb03272c35b1b9946 (diff) | |
download | openembedded-core-8aee6b32a09dbbce304018f169eb6623182622c5.tar.gz openembedded-core-8aee6b32a09dbbce304018f169eb6623182622c5.tar.bz2 openembedded-core-8aee6b32a09dbbce304018f169eb6623182622c5.zip |
classes: Standardise whitespace in anonymous python methods and factor out functions for more efficent use by bitbake (as also patched in OE)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@875 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/multimachine.bbclass')
-rw-r--r-- | meta/classes/multimachine.bbclass | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/meta/classes/multimachine.bbclass b/meta/classes/multimachine.bbclass index 4359d6c669..0bd6abe419 100644 --- a/meta/classes/multimachine.bbclass +++ b/meta/classes/multimachine.bbclass @@ -4,19 +4,24 @@ STAGING_KERNEL_DIR = "${STAGING_DIR}/${MULTIMACH_ARCH}-${TARGET_OS}/kernel" # Find any machine specific sub packages and if present, mark the # whole package as machine specific for multimachine purposes. -python __anonymous () { - packages = bb.data.getVar('PACKAGES', d, 1).split() - macharch = bb.data.getVar('MACHINE_ARCH', d, 1) - multiarch = bb.data.getVar('PACKAGE_ARCH', d, 1) - for pkg in packages: - pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1) +def multi_machine_after_parse(d): + import bb + packages = bb.data.getVar('PACKAGES', d, 1).split() + macharch = bb.data.getVar('MACHINE_ARCH', d, 1) + multiarch = bb.data.getVar('PACKAGE_ARCH', d, 1) + + for pkg in packages: + pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1) - # We could look for != PACKAGE_ARCH here but how to choose - # if multiple differences are present? - # Look through PACKAGE_ARCHS for the priority order? - if pkgarch and pkgarch == macharch: - multiarch = macharch + # We could look for != PACKAGE_ARCH here but how to choose + # if multiple differences are present? + # Look through PACKAGE_ARCHS for the priority order? + if pkgarch and pkgarch == macharch: + multiarch = macharch - bb.data.setVar('MULTIMACH_ARCH', multiarch, d) + bb.data.setVar('MULTIMACH_ARCH', multiarch, d) + +python __anonymous () { + multi_machine_after_parse(d) } |