summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch/svk.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch/svk.py')
-rw-r--r--bitbake/lib/bb/fetch/svk.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/bitbake/lib/bb/fetch/svk.py b/bitbake/lib/bb/fetch/svk.py
index 2754971eba..595a9da255 100644
--- a/bitbake/lib/bb/fetch/svk.py
+++ b/bitbake/lib/bb/fetch/svk.py
@@ -48,18 +48,14 @@ class Svk(Fetch):
48 else: 48 else:
49 ud.module = ud.parm["module"] 49 ud.module = ud.parm["module"]
50 50
51 ud.revision = "" 51 ud.revision = ud.parm.get('rev', "")
52 if 'rev' in ud.parm:
53 ud.revision = ud.parm['rev']
54 52
55 ud.localfile = data.expand('%s_%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision, ud.date), d) 53 ud.localfile = data.expand('%s_%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision, ud.date), d)
56 54
57 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) 55 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile)
58 56
59 def forcefetch(self, url, ud, d): 57 def forcefetch(self, url, ud, d):
60 if (ud.date == "now"): 58 return ud.date == "now"
61 return True
62 return False
63 59
64 def go(self, loc, ud, d): 60 def go(self, loc, ud, d):
65 """Fetch urls""" 61 """Fetch urls"""
@@ -105,4 +101,4 @@ class Svk(Fetch):
105 pass 101 pass
106 raise FetchError(ud.module) 102 raise FetchError(ud.module)
107 # cleanup 103 # cleanup
108 os.system('rm -rf %s' % tmpfile) 104 bb.utils.prunedir(tmpfile)