diff options
author | Florin Sarbu <florin.sarbu@windriver.com> | 2013-11-25 12:33:50 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-25 13:00:18 +0000 |
commit | 64372fa027713f793d6f67981c59e239e969a855 (patch) | |
tree | 4a96e4332df7399642e0fcabee0ecce1ca7ca203 /bitbake | |
parent | b1c15cb9077f1d2e19376ff8506359ebbb77d6e3 (diff) | |
download | poky-64372fa027713f793d6f67981c59e239e969a855.tar.gz |
bitbake: bitbake: fetch2: Remove the unused urldata from the git fetcher.
(Bitbake rev: e0a2e9699e9f338dd7ade8c9eef0a12c7639ec05)
Signed-off-by: Florin Sarbu <florin.sarbu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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 b2366317c8..a9470e40d8 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -125,7 +125,7 @@ class Git(FetchMethod): | |||
125 | if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): | 125 | if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): |
126 | if ud.revisions[name]: | 126 | if ud.revisions[name]: |
127 | ud.branches[name] = ud.revisions[name] | 127 | ud.branches[name] = ud.revisions[name] |
128 | ud.revisions[name] = self.latest_revision(ud.url, ud, d, name) | 128 | ud.revisions[name] = self.latest_revision(ud, d, name) |
129 | 129 | ||
130 | gitsrcname = '%s%s' % (ud.host.replace(':','.'), ud.path.replace('/', '.').replace('*', '.')) | 130 | gitsrcname = '%s%s' % (ud.host.replace(':','.'), ud.path.replace('/', '.').replace('*', '.')) |
131 | # for rebaseable git repo, it is necessary to keep mirror tar ball | 131 | # for rebaseable git repo, it is necessary to keep mirror tar ball |