diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-25 15:55:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-25 15:55:57 +0100 |
commit | a8edf79fce381d0433f18bd38df6cd74008e5179 (patch) | |
tree | 8a7aecdbb244718e1253dea816cac3cd08b5c594 /bitbake/lib/bb | |
parent | e8738b83b70eb794c5509ec7706bf64c68249af1 (diff) | |
download | poky-a8edf79fce381d0433f18bd38df6cd74008e5179.tar.gz |
bitbake: fetch2/git: Don't use deprecated API1.3_M5.rc2
(Bitbake rev: 8e650b3307b60cfe8e7439ea6891c3a85f785af9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
257 | indirectiondir = destdir[:-1] + ".indirectionsymlink" | 257 | indirectiondir = destdir[:-1] + ".indirectionsymlink" |
258 | if os.path.exists(indirectiondir): | 258 | if os.path.exists(indirectiondir): |
259 | os.remove(indirectiondir) | 259 | os.remove(indirectiondir) |
260 | bb.mkdirhier(os.path.dirname(indirectiondir)) | 260 | bb.utils.mkdirhier(os.path.dirname(indirectiondir)) |
261 | os.symlink(ud.clonedir, indirectiondir) | 261 | os.symlink(ud.clonedir, indirectiondir) |
262 | clonedir = indirectiondir | 262 | clonedir = indirectiondir |
263 | 263 | ||