From patchwork Thu Mar 17 18:52:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/5] lib/oe/patch.py: Cosmetic change to avoid bitbake warning Date: Thu, 17 Mar 2011 18:52:47 -0000 From: Khem Raj X-Patchwork-Id: 1569 Message-Id: To: OE core bb.mkdirhier should be bb.utils.mkdirhier Signed-off-by: Khem Raj --- 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 c8eeb8b..a4980ed 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py @@ -356,7 +356,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")