Commit a8edf79f authored by Richard Purdie's avatar Richard Purdie
Browse files

bitbake: fetch2/git: Don't use deprecated API


(Bitbake rev: 8e650b3307b60cfe8e7439ea6891c3a85f785af9)
Signed-off-by: default avatarRichard Purdie <richard.purdie@linuxfoundation.org>
parent e8738b83
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment