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-23 15:43:56 +0000 |
commit | 7eab4aee687b1ea825b78c0ae715de814230fba1 (patch) | |
tree | 5b5ba963cfd9b72f25c04d4b99b0e894ae665d82 | |
parent | 354d85dd358c82b2bb0f97235d2027bd54fd7b18 (diff) | |
download | poky-7eab4aee687b1ea825b78c0ae715de814230fba1.tar.gz |
lib/oe/patch.py: Cosmetic change to avoid bitbake warning
bb.mkdirhier should be bb.utils.mkdirhier
(From OE-Core rev: cd28d5f5ad7855d0d6a15bec5317c942e2462065)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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): | |||
358 | t = bb.data.getVar('T', self.patchset.d, 1) | 358 | t = bb.data.getVar('T', self.patchset.d, 1) |
359 | if not t: | 359 | if not t: |
360 | bb.msg.fatal(bb.msg.domain.Build, "T not set") | 360 | bb.msg.fatal(bb.msg.domain.Build, "T not set") |
361 | bb.mkdirhier(t) | 361 | bb.utils.mkdirhier(t) |
362 | import random | 362 | import random |
363 | rcfile = "%s/bashrc.%s.%s" % (t, str(os.getpid()), random.random()) | 363 | rcfile = "%s/bashrc.%s.%s" % (t, str(os.getpid()), random.random()) |
364 | f = open(rcfile, "w") | 364 | f = open(rcfile, "w") |