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:44:37 +0100 |
commit | 9f36a3c44543fe4cb4492ac455fc8ad9f860d5da (patch) | |
tree | 40e34275087e452f61b1cb4f3437ea10247e9438 /meta/classes/package.bbclass | |
parent | 3b47aa11c261b83987149712e029e8db5989b574 (diff) | |
download | poky-9f36a3c44543fe4cb4492ac455fc8ad9f860d5da.tar.gz |
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().
(From OE-Core rev: 9972f0686794a01582fd1a15889dcbd89bc5cf72)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-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 () { | |||
1930 | # Optimisations | 1930 | # Optimisations |
1931 | ########################################################################### | 1931 | ########################################################################### |
1932 | 1932 | ||
1933 | # Contunually rexpanding complex expressions is inefficient, particularly when | 1933 | # Continually expanding complex expressions is inefficient, particularly |
1934 | # we write to the datastore and invalidate the expansion cache. This code | 1934 | # when we write to the datastore and invalidate the expansion cache. This |
1935 | # pre-expands some frequently used variables | 1935 | # code pre-expands some frequently used variables |
1936 | 1936 | ||
1937 | def expandVar(x, d): | 1937 | def expandVar(x, d): |
1938 | d.setVar(x, d.getVar(x, True)) | 1938 | d.setVar(x, d.getVar(x, True)) |