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 | openembedded-core-e886ec2a2b0d33ff5f2f65259e441e736e28518d.tar.gz openembedded-core-e886ec2a2b0d33ff5f2f65259e441e736e28518d.tar.bz2 openembedded-core-e886ec2a2b0d33ff5f2f65259e441e736e28518d.zip |
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: 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... |