diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-03-16 17:42:10 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-21 18:02:34 +0000 |
commit | cd28d5f5ad7855d0d6a15bec5317c942e2462065 (patch) | |
tree | b10c420d336fde96b21dd60a8f282ced6ad1b827 /meta/lib | |
parent | 0bdb38820489a69448e36c75863e2e2d47cdb20f (diff) | |
download | openembedded-core-cd28d5f5ad7855d0d6a15bec5317c942e2462065.tar.gz openembedded-core-cd28d5f5ad7855d0d6a15bec5317c942e2462065.tar.bz2 openembedded-core-cd28d5f5ad7855d0d6a15bec5317c942e2462065.zip |
lib/oe/patch.py: Cosmetic change to avoid bitbake warning
bb.mkdirhier should be bb.utils.mkdirhier
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/patch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index 5fb687dda0..16d3d081ba 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py @@ -358,7 +358,7 @@ class UserResolver(Resolver): t = bb.data.getVar('T', self.patchset.d, 1) if not t: bb.msg.fatal(bb.msg.domain.Build, "T not set") - bb.mkdirhier(t) + bb.utils.mkdirhier(t) import random rcfile = "%s/bashrc.%s.%s" % (t, str(os.getpid()), random.random()) f = open(rcfile, "w") |