From e1c1ee19e04eca1ffd09b49104a7b49e89c74d12 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 24 Sep 2012 08:37:09 +0000 Subject: bitbake: fetch2/git: Add missing mkdir bitbake-selftest is failing due to directories not being created. This adds in an appropriate mkdir so the tests can complete. Presumably in general OE use, something else is ensuring the parent directory is created. (Bitbake rev: 1270a07713e2a6c6e6fadcc61b785aebc99ae17b) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/git.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index af7c623ccb..bb681a46ec 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -257,6 +257,7 @@ class Git(FetchMethod): indirectiondir = destdir[:-1] + ".indirectionsymlink" if os.path.exists(indirectiondir): os.remove(indirectiondir) + bb.mkdirhier(os.path.dirname(indirectiondir)) os.symlink(ud.clonedir, indirectiondir) clonedir = indirectiondir -- cgit v1.2.3-54-g00ecf