From a8edf79fce381d0433f18bd38df6cd74008e5179 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 25 Sep 2012 15:55:27 +0100 Subject: bitbake: fetch2/git: Don't use deprecated API (Bitbake rev: 8e650b3307b60cfe8e7439ea6891c3a85f785af9) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index bb681a46ec..0fd0b2f3b9 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -257,7 +257,7 @@ class Git(FetchMethod): indirectiondir = destdir[:-1] + ".indirectionsymlink" if os.path.exists(indirectiondir): os.remove(indirectiondir) - bb.mkdirhier(os.path.dirname(indirectiondir)) + bb.utils.mkdirhier(os.path.dirname(indirectiondir)) os.symlink(ud.clonedir, indirectiondir) clonedir = indirectiondir -- cgit v1.2.3-54-g00ecf