aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-02 17:46:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-02 17:46:37 +0000
commitadfa6c40dadebb18bfd457859300d8c093b007f7 (patch)
treef8ddd85e3258a37af582c76ea9b6d65a5d8067db
parent43addfd01d97fe327b62ad000dccccfb6185fabe (diff)
downloadopenembedded-core-contrib-adfa6c40dadebb18bfd457859300d8c093b007f7.tar.gz
bitbake/fetch2/git: Ensure target directory exists when copying files
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/fetch2/git.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index c54d826a01..d396d2458a 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -156,6 +156,7 @@ class Git(Fetch):
runfetchcmd("git clone -s -n %s %s" % (ud.clonedir, destdir), d)
if os.path.exists("%s/.git/refs/remotes/origin" % ud.clonedir):
+ bb.mkdirhier("%s/.git/refs/remotes/origin/" % destdir)
runfetchcmd("cp -af %s/.git/refs/remotes/origin/* %s/.git/refs/remotes/origin/" %(ud.clonedir, destdir), d)
if os.path.exists("%s/.git/packed-refs" % ud.clonedir):
runfetchcmd("cp -af %s/.git/packed-refs %s/.git/" %(ud.clonedir, destdir), d)