diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/bzr.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/fetch2/hg.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/bzr.py b/bitbake/lib/bb/fetch2/bzr.py index 3caaa6fca9..03e9ac461b 100644 --- a/bitbake/lib/bb/fetch2/bzr.py +++ b/bitbake/lib/bb/fetch2/bzr.py | |||
@@ -48,7 +48,7 @@ class Bzr(FetchMethod): | |||
48 | ud.setup_revisons(d) | 48 | ud.setup_revisons(d) |
49 | 49 | ||
50 | if not ud.revision: | 50 | if not ud.revision: |
51 | ud.revision = self.latest_revision(ud.url, ud, d) | 51 | ud.revision = self.latest_revision(ud, d) |
52 | 52 | ||
53 | ud.localfile = data.expand('bzr_%s_%s_%s.tar.gz' % (ud.host, ud.path.replace('/', '.'), ud.revision), d) | 53 | ud.localfile = data.expand('bzr_%s_%s_%s.tar.gz' % (ud.host, ud.path.replace('/', '.'), ud.revision), d) |
54 | 54 | ||
diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py index 76810abb7d..6927f6111e 100644 --- a/bitbake/lib/bb/fetch2/hg.py +++ b/bitbake/lib/bb/fetch2/hg.py | |||
@@ -62,7 +62,7 @@ class Hg(FetchMethod): | |||
62 | if 'rev' in ud.parm: | 62 | if 'rev' in ud.parm: |
63 | ud.revision = ud.parm['rev'] | 63 | ud.revision = ud.parm['rev'] |
64 | elif not ud.revision: | 64 | elif not ud.revision: |
65 | ud.revision = self.latest_revision(ud.url, ud, d) | 65 | ud.revision = self.latest_revision(ud, d) |
66 | 66 | ||
67 | ud.localfile = data.expand('%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision), d) | 67 | ud.localfile = data.expand('%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision), d) |
68 | 68 | ||