diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 10:13:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 10:13:29 +0000 |
commit | 681bcf4e6b606dde2029d143805023a927285917 (patch) | |
tree | 5824d298f20b50b3d9cdf5a6c36cc74169e677e8 /bitbake/lib/bb | |
parent | 330886826770ff6ec1449dc375cb4c3604b2736b (diff) | |
download | openembedded-core-681bcf4e6b606dde2029d143805023a927285917.tar.gz openembedded-core-681bcf4e6b606dde2029d143805023a927285917.tar.bz2 openembedded-core-681bcf4e6b606dde2029d143805023a927285917.zip |
bitbake/fetch2/git: use clonedir as ud.localfile too since the mirror tarball may not exist
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 a78e4519e2..55c66cf49a 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -75,7 +75,7 @@ class Git(FetchMethod): if not ud.revisions[name] or ud.revisions[name] == "master": ud.revisions[name] = self.latest_revision(url, ud, d, name) - ud.localfile = ud.mirrortarball + ud.localfile = ud.clonedir def localpath(self, url, ud, d): return ud.clonedir |