diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2014-08-28 17:11:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-29 23:42:57 +0100 |
commit | 9972f0686794a01582fd1a15889dcbd89bc5cf72 (patch) | |
tree | 71711b92aad0ccc8feb2e349840f49fb923595ee | |
parent | abf4eb613eba0892a5f240de7aa3a9a1b2879354 (diff) | |
download | openembedded-core-9972f0686794a01582fd1a15889dcbd89bc5cf72.tar.gz openembedded-core-9972f0686794a01582fd1a15889dcbd89bc5cf72.tar.bz2 openembedded-core-9972f0686794a01582fd1a15889dcbd89bc5cf72.zip |
package: Correct two typos in a comment
This quite coincidentally invalidates the sstate for do_package which
is needed due to the correction of oe.utils.multiprocess_exec().
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/package.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 0ff5370587..a877d28293 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1930,9 +1930,9 @@ python do_package () { # Optimisations ########################################################################### - # Contunually rexpanding complex expressions is inefficient, particularly when - # we write to the datastore and invalidate the expansion cache. This code - # pre-expands some frequently used variables + # Continually expanding complex expressions is inefficient, particularly + # when we write to the datastore and invalidate the expansion cache. This + # code pre-expands some frequently used variables def expandVar(x, d): d.setVar(x, d.getVar(x, True)) |