diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-10 09:46:02 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:36 +0100 |
commit | e886ec2a2b0d33ff5f2f65259e441e736e28518d (patch) | |
tree | f94a6ead8239ed41e0d4a77fc34272d20c065311 | |
parent | 8f9bdd68de7de629928a7d17d0b3772d979d281a (diff) | |
download | poky-e886ec2a2b0d33ff5f2f65259e441e736e28518d.tar.gz |
Use bb.utils.mkdirhier in bb.cache to shut up the pending deprecation warning
(Bitbake rev: 0c885752d69e4108e2960d59ec1bd6c911dd141a)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index f77a3f185e..da4546640a 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -64,7 +64,7 @@ class Cache: | |||
64 | self.cachefile = os.path.join(self.cachedir, "bb_cache.dat") | 64 | self.cachefile = os.path.join(self.cachedir, "bb_cache.dat") |
65 | 65 | ||
66 | bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir) | 66 | bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir) |
67 | bb.mkdirhier(self.cachedir) | 67 | bb.utils.mkdirhier(self.cachedir) |
68 | 68 | ||
69 | # If any of configuration.data's dependencies are newer than the | 69 | # If any of configuration.data's dependencies are newer than the |
70 | # cache there isn't even any point in loading it... | 70 | # cache there isn't even any point in loading it... |