diff options
-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 f203c5abb1..d8337149b1 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -115,7 +115,7 @@ class Git(FetchMethod): | |||
115 | ud.branches[name] = ud.revisions[name] | 115 | ud.branches[name] = ud.revisions[name] |
116 | ud.revisions[name] = self.latest_revision(ud.url, ud, d, name) | 116 | ud.revisions[name] = self.latest_revision(ud.url, ud, d, name) |
117 | 117 | ||
118 | gitsrcname = '%s%s' % (ud.host, ud.path.replace('/', '.')) | 118 | gitsrcname = '%s%s' % (ud.host.replace(':','.'), ud.path.replace('/', '.')) |
119 | # for rebaseable git repo, it is necessary to keep mirror tar ball | 119 | # for rebaseable git repo, it is necessary to keep mirror tar ball |
120 | # per revision, so that even the revision disappears from the | 120 | # per revision, so that even the revision disappears from the |
121 | # upstream repo in the future, the mirror will remain intact and still | 121 | # upstream repo in the future, the mirror will remain intact and still |