diff options
author | Richard Purdie <richard@openedhand.com> | 2005-12-22 16:58:42 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-12-22 16:58:42 +0000 |
commit | e752d6f3aa7b0a93cc3af880bee7f88d778d1f67 (patch) | |
tree | 94422565ff78814ceb24d75a2ebcfd46f8e0f21d /bitbake/lib/bb | |
parent | 597f73ebe7890f67ad02f8ac54acc3280330b097 (diff) | |
download | poky-e752d6f3aa7b0a93cc3af880bee7f88d778d1f67.tar.gz |
Fix bitbake svn fetcher filenames
git-svn-id: https://svn.o-hand.com/repos/poky@204 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb')
-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 | ||