aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-06-10 09:46:02 -0700
committerChris Larson <chris_larson@mentor.com>2010-06-10 09:46:02 -0700
commit0c885752d69e4108e2960d59ec1bd6c911dd141a (patch)
tree112785b7e79432b96ad27336ee24fd9376ccd604 /lib
parent43700fa1ca1d2635de4ed46110057cb164ee82d1 (diff)
downloadbitbake-0c885752d69e4108e2960d59ec1bd6c911dd141a.tar.gz
Use bb.utils.mkdirhier in bb.cache to shut up the pending deprecation warning
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index f77a3f185..da4546640 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -64,7 +64,7 @@ class Cache:
self.cachefile = os.path.join(self.cachedir, "bb_cache.dat")
bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir)
- bb.mkdirhier(self.cachedir)
+ bb.utils.mkdirhier(self.cachedir)
# If any of configuration.data's dependencies are newer than the
# cache there isn't even any point in loading it...