summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-20 08:23:27 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-24 10:00:55 +0100
commit587b144ee409d444494d8d7f2d1c53ede8f7c953 (patch)
tree611ecb4b57b8acb0fbcfc97b4de3fc35dbdcc8fb /lib/bb/cache.py
parent984ad90b2f1e29634dc79803a4a0404ab0534039 (diff)
downloadbitbake-contrib-587b144ee409d444494d8d7f2d1c53ede8f7c953.tar.gz
lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index f892d7dc3..ac0c27f92 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -225,7 +225,7 @@ class CoreRecipeInfo(RecipeInfoCommon):
for package in self.packages_dynamic:
cachedata.packages_dynamic[package].append(fn)
- # Build hash of runtime depends and rececommends
+ # Build hash of runtime depends and recommends
for package in self.packages + [self.pn]:
cachedata.rundeps[fn][package] = list(self.rdepends) + self.rdepends_pkg[package]
cachedata.runrecs[fn][package] = list(self.rrecommends) + self.rrecommends_pkg[package]
@@ -261,7 +261,7 @@ class Cache(object):
def __init__(self, data, data_hash, caches_array):
# Pass caches_array information into Cache Constructor
- # It will be used in later for deciding whether we
+ # It will be used later for deciding whether we
# need extra cache file dump/load support
self.caches_array = caches_array
self.cachedir = data.getVar("CACHE", True)