summaryrefslogtreecommitdiff
path: root/bitbake
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-04 14:04:36 +0200
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:35 +0100
commit6c37c32773d7bd345f60bedb871a3d3252105569 (patch)
tree732ee5b4ebfea0078b9f425bd6d6af709f65f237 /bitbake
parenta7ad7cfb2ffd183dcd5d11fb6a29a759b6417c25 (diff)
downloadopenembedded-core-6c37c32773d7bd345f60bedb871a3d3252105569.tar.gz
openembedded-core-6c37c32773d7bd345f60bedb871a3d3252105569.tar.bz2
openembedded-core-6c37c32773d7bd345f60bedb871a3d3252105569.tar.xz
openembedded-core-6c37c32773d7bd345f60bedb871a3d3252105569.zip
cache: fix typo in error message of cacheValidUpdate()
(Bitbake rev: 9937d5992d72104c670e069f4c46cc62a490e18f) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 1d592a42f..4848b4105 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -263,7 +263,7 @@ class Cache:
# Check file still exists
if mtime == 0:
- bb.msg.debug(2, bb.msg.domain.Cache, "Cache: %s not longer exists" % fn)
+ bb.msg.debug(2, bb.msg.domain.Cache, "Cache: %s no longer exists" % fn)
self.remove(fn)
return False