From e0a2e9699e9f338dd7ade8c9eef0a12c7639ec05 Mon Sep 17 00:00:00 2001 From: Florin Sarbu Date: Mon, 25 Nov 2013 12:33:50 +0200 Subject: [PATCH] bitbake: fetch2: Remove the unused urldata from the git fetcher. Signed-off-by: Florin Sarbu Signed-off-by: Richard Purdie --- lib/bb/fetch2/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py index b2366317c81..a9470e40d8d 100644 --- a/lib/bb/fetch2/git.py +++ b/lib/bb/fetch2/git.py @@ -125,7 +125,7 @@ class Git(FetchMethod): if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): if ud.revisions[name]: ud.branches[name] = ud.revisions[name] - ud.revisions[name] = self.latest_revision(ud.url, ud, d, name) + ud.revisions[name] = self.latest_revision(ud, d, name) gitsrcname = '%s%s' % (ud.host.replace(':','.'), ud.path.replace('/', '.').replace('*', '.')) # for rebaseable git repo, it is necessary to keep mirror tar ball -- 2.47.3