From ac8982c2e004525e00785e64a6215b41c75546b3 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 7 Feb 2011 09:13:44 +0000 Subject: bitbake/fetch2/git: Fix localpath to point at the clone repo since we no longer always generate a mirror tarball and it isn't a good guide to fetcher success (From Poky rev: 917d3e9697acefe308e7139e86df37a072ee3500) Signed-off-by: Richard Purdie --- lib/bb/fetch2/git.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/bb/fetch2') diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py index 35031d28c..8386ecca0 100644 --- a/lib/bb/fetch2/git.py +++ b/lib/bb/fetch2/git.py @@ -77,6 +77,9 @@ class Git(FetchMethod): ud.localfile = ud.mirrortarball + def localpath(self, url, ud, d): + return ud.clonedir + def forcefetch(self, url, ud, d): for name in ud.names: if not self._contains_ref(ud.revisions[name], d): -- cgit 1.2.3-korg