diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-03 21:17:26 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 09:06:35 +0000 |
commit | 972eb5fababb33b5537fcfbbaf8e33ea820f0fee (patch) | |
tree | 2bd453bc66853c72cb284067d6679d6f498cd77b /bitbake/lib/bb/fetch2/bzr.py | |
parent | 0e5404cedadaea6738ef6468d7eb8a24d23d9bab (diff) | |
download | poky-972eb5fababb33b5537fcfbbaf8e33ea820f0fee.tar.gz |
bitbake/fetch2: Move ud.localfile setup into urldata_init
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.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/bzr.py b/bitbake/lib/bb/fetch2/bzr.py index 80c02f835b..cc00357904 100644 --- a/bitbake/lib/bb/fetch2/bzr.py +++ b/bitbake/lib/bb/fetch2/bzr.py | |||
@@ -42,12 +42,12 @@ class Bzr(Fetch): | |||
42 | relpath = self._strip_leading_slashes(ud.path) | 42 | relpath = self._strip_leading_slashes(ud.path) |
43 | 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) |
44 | 44 | ||
45 | def localpath (self, url, ud, d): | ||
46 | if not ud.revision: | 45 | if not ud.revision: |
47 | ud.revision = self.latest_revision(url, ud, d) | 46 | ud.revision = self.latest_revision(ud.url, ud, d) |
48 | 47 | ||
49 | ud.localfile = data.expand('bzr_%s_%s_%s.tar.gz' % (ud.host, ud.path.replace('/', '.'), ud.revision), d) | 48 | ud.localfile = data.expand('bzr_%s_%s_%s.tar.gz' % (ud.host, ud.path.replace('/', '.'), ud.revision), d) |
50 | 49 | ||
50 | def localpath (self, url, ud, d): | ||
51 | return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) | 51 | return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) |
52 | 52 | ||
53 | def _buildbzrcommand(self, ud, d, command): | 53 | def _buildbzrcommand(self, ud, d, command): |