From cd28d5f5ad7855d0d6a15bec5317c942e2462065 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 16 Mar 2011 17:42:10 -0700 Subject: lib/oe/patch.py: Cosmetic change to avoid bitbake warning bb.mkdirhier should be bb.utils.mkdirhier Signed-off-by: Khem Raj --- meta/lib/oe/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oe/patch.py') 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") -- cgit 1.2.3-korg