diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/osc.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/osc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/osc.py b/bitbake/lib/bb/fetch2/osc.py index 25dcb7bd67..93deb458e8 100644 --- a/bitbake/lib/bb/fetch2/osc.py +++ b/bitbake/lib/bb/fetch2/osc.py | |||
@@ -26,7 +26,7 @@ class Osc(Fetch): | |||
26 | """ | 26 | """ |
27 | return ud.type in ['osc'] | 27 | return ud.type in ['osc'] |
28 | 28 | ||
29 | def localpath(self, url, ud, d): | 29 | def urldata_init(self, ud, d): |
30 | if not "module" in ud.parm: | 30 | if not "module" in ud.parm: |
31 | raise MissingParameterError("osc method needs a 'module' parameter.") | 31 | raise MissingParameterError("osc method needs a 'module' parameter.") |
32 | 32 | ||
@@ -49,6 +49,7 @@ class Osc(Fetch): | |||
49 | 49 | ||
50 | ud.localfile = data.expand('%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.path.replace('/', '.'), ud.revision), d) | 50 | ud.localfile = data.expand('%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.path.replace('/', '.'), ud.revision), d) |
51 | 51 | ||
52 | def localpath(self, url, ud, d): | ||
52 | return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) | 53 | return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) |
53 | 54 | ||
54 | def _buildosccommand(self, ud, d, command): | 55 | def _buildosccommand(self, ud, d, command): |