diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch.py b/bitbake/lib/bb/fetch.py index 982ab51b76..e41e59aa81 100644 --- a/bitbake/lib/bb/fetch.py +++ b/bitbake/lib/bb/fetch.py | |||
@@ -524,7 +524,7 @@ class Svn(Fetch): | |||
524 | 524 | ||
525 | date = data.getVar("CVSDATE", d, 1) or data.getVar("DATE", d, 1) | 525 | date = data.getVar("CVSDATE", d, 1) or data.getVar("DATE", d, 1) |
526 | 526 | ||
527 | return os.path.join(data.getVar("DL_DIR", d, 1),data.expand('%s_%s_%s_%s.tar.gz' % ( module.replace('/', '.'), host, revision, date), d)) | 527 | return os.path.join(data.getVar("DL_DIR", d, 1),data.expand('%s_%s_%s_%s_%s.tar.gz' % ( module.replace('/', '.'), host, path.replace('/','.'), revision, date), d)) |
528 | localpath = staticmethod(localpath) | 528 | localpath = staticmethod(localpath) |
529 | 529 | ||
530 | def go(self, d, urls = []): | 530 | def go(self, d, urls = []): |
@@ -578,7 +578,7 @@ class Svn(Fetch): | |||
578 | if "rsh" in parm: | 578 | if "rsh" in parm: |
579 | svn_rsh = parm["rsh"] | 579 | svn_rsh = parm["rsh"] |
580 | 580 | ||
581 | tarfn = data.expand('%s_%s_%s_%s.tar.gz' % (module.replace('/', '.'), host, revision, date), localdata) | 581 | tarfn = data.expand('%s_%s_%s_%s_%s.tar.gz' % (module.replace('/', '.'), host, path.replace('/', '.'), revision, date), localdata) |
582 | data.setVar('TARFILES', dlfile, localdata) | 582 | data.setVar('TARFILES', dlfile, localdata) |
583 | data.setVar('TARFN', tarfn, localdata) | 583 | data.setVar('TARFN', tarfn, localdata) |
584 | 584 | ||