summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/bzr.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/bzr.py')
-rw-r--r--bitbake/lib/bb/fetch2/bzr.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/bzr.py b/bitbake/lib/bb/fetch2/bzr.py
index 3d23b4d3cf..1368f172d3 100644
--- a/bitbake/lib/bb/fetch2/bzr.py
+++ b/bitbake/lib/bb/fetch2/bzr.py
@@ -34,12 +34,15 @@ class Bzr(Fetch):
34 def supports(self, url, ud, d): 34 def supports(self, url, ud, d):
35 return ud.type in ['bzr'] 35 return ud.type in ['bzr']
36 36
37 def localpath (self, url, ud, d): 37 def urldata_init(self, ud, d):
38 38 """
39 init bzr specific variable within url data
40 """
39 # Create paths to bzr checkouts 41 # Create paths to bzr checkouts
40 relpath = self._strip_leading_slashes(ud.path) 42 relpath = self._strip_leading_slashes(ud.path)
41 ud.pkgdir = os.path.join(data.expand('${BZRDIR}', d), ud.host, relpath) 43 ud.pkgdir = os.path.join(data.expand('${BZRDIR}', d), ud.host, relpath)
42 44
45 def localpath (self, url, ud, d):
43 revision = Fetch.srcrev_internal_helper(ud, d) 46 revision = Fetch.srcrev_internal_helper(ud, d)
44 if revision is True: 47 if revision is True:
45 ud.revision = self.latest_revision(url, ud, d) 48 ud.revision = self.latest_revision(url, ud, d)