diff options
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 13 | 
1 files changed, 9 insertions, 4 deletions
| diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index e8ad3b43ca..58ed1f4108 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -41,8 +41,11 @@ class Git(Fetch):          """          return ud.type in ['git'] -    def localpath(self, url, ud, d): - +    def urldata_init(self, ud, d): +        """ +        init git specific variable within url data +        so that the git method like latest_revision() can work +        """          if 'protocol' in ud.parm:              ud.proto = ud.parm['protocol']          elif not ud.host: @@ -56,6 +59,10 @@ class Git(Fetch):          ud.mirrortarball = 'git_%s.tar.gz' % (gitsrcname)          ud.clonedir = os.path.join(data.expand('${GITDIR}', d), gitsrcname) +        ud.basecmd = data.getVar("FETCHCMD_git", d, True) or "git" + +    def localpath(self, url, ud, d): +          tag = Fetch.srcrev_internal_helper(ud, d)          if tag is True:              ud.tag = self.latest_revision(url, ud, d) @@ -78,8 +85,6 @@ class Git(Fetch):          else:              ud.localfile = data.expand('git_%s%s_%s.tar.gz' % (ud.host, subdirpath.replace('/', '.'), ud.tag), d) -        ud.basecmd = data.getVar("FETCHCMD_git", d, True) or "git" -          if 'noclone' in ud.parm:              ud.localfile = None              return None | 
