From: Peter Kjellerstedt Date: Thu, 28 Aug 2014 15:11:04 +0000 (+0200) Subject: package: Correct two typos in a comment X-Git-Tag: 2015-4~1722 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9972f0686794a01582fd1a15889dcbd89bc5cf72;p=openembedded-core.git 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 Signed-off-by: Richard Purdie --- 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))