summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/bzr.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 02:13:23 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 02:13:26 +0100
commitc4371138f7444ecaa1fdd2b1ee4949fbc819f886 (patch)
tree76c897d9fbf16edb7dba208c8ae690798cfc875b /bitbake/lib/bb/fetch2/bzr.py
parentf3ade6b0b675cc683829fefd3097685353ed9f15 (diff)
downloadpoky-c4371138f7444ecaa1fdd2b1ee4949fbc819f886.tar.gz
bitbake/fetch2: Fix the problems introduced by the git fetcher AUTOREV fix
The ordering constrains on the urldata_init functions are not straight forward. To avoid further problems, create a helper function to setup the source revisions which the init functions can all at the appropriate point. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/bzr.py')
-rw-r--r--bitbake/lib/bb/fetch2/bzr.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/bzr.py b/bitbake/lib/bb/fetch2/bzr.py
index 04a9087c11..0d10eb4a2b 100644
--- a/bitbake/lib/bb/fetch2/bzr.py
+++ b/bitbake/lib/bb/fetch2/bzr.py
@@ -45,6 +45,8 @@ class Bzr(FetchMethod):
45 relpath = self._strip_leading_slashes(ud.path) 45 relpath = self._strip_leading_slashes(ud.path)
46 ud.pkgdir = os.path.join(data.expand('${BZRDIR}', d), ud.host, relpath) 46 ud.pkgdir = os.path.join(data.expand('${BZRDIR}', d), ud.host, relpath)
47 47
48 ud.setup_revisons(d)
49
48 if not ud.revision: 50 if not ud.revision:
49 ud.revision = self.latest_revision(ud.url, ud, d) 51 ud.revision = self.latest_revision(ud.url, ud, d)
50 52