diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-03 17:31:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-06 13:12:19 +0000 |
commit | 4f9963d1d82ee896fe9491d6a8b32be42cd06f14 (patch) | |
tree | 6f1071e493a52f033c17a03dd976e2df7654e431 /meta/classes/update-alternatives.bbclass | |
parent | 82ae9cfb09ee5c0aa6402c972d71e2b64d1ce8bc (diff) | |
download | openembedded-core-4f9963d1d82ee896fe9491d6a8b32be42cd06f14.tar.gz openembedded-core-4f9963d1d82ee896fe9491d6a8b32be42cd06f14.tar.bz2 openembedded-core-4f9963d1d82ee896fe9491d6a8b32be42cd06f14.zip |
package.bbclass: Add PACKAGESPLITFUNCS variable
Prepending to populate_packages is rather ugly and means its hard to trace
errors and also profiling informaiton is summed together in one function.
This patch starts to split out the prepends to become separate functions
to avoid these issues. This is generally a neater way to write functions
than prepending to where there can sometimes be variable scope issues
and we've been bitten by whitespace issues in the past.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/update-alternatives.bbclass')
-rw-r--r-- | meta/classes/update-alternatives.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/update-alternatives.bbclass b/meta/classes/update-alternatives.bbclass index 90bc56b9fb..8f4d0976a9 100644 --- a/meta/classes/update-alternatives.bbclass +++ b/meta/classes/update-alternatives.bbclass @@ -282,7 +282,9 @@ python perform_packagecopy_append () { bb.warn('%s: Unable to resolve dangling symlink: %s' % (pn, alt_target)) } -python populate_packages_prepend () { +PACKAGESPLITFUNCS_prepend = "populate_packages_updatealternatives " + +python populate_packages_updatealternatives () { pn = d.getVar('BPN', True) # Do actual update alternatives processing |