summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-10-23 10:39:43 +0100
committerRichard Purdie <rpurdie@rpsys.net>2009-11-03 22:23:19 +0000
commita865dd426316eaec7d65793b35624749d2a6d408 (patch)
tree6ccf0a392d365702561afb41895f7de98cb0e810
parentc16eeb1bc5a00ad036f56c97a339c775798abce5 (diff)
downloadbitbake-a865dd426316eaec7d65793b35624749d2a6d408.tar.gz
fetch/svk: Fix up breakage. Evidently nobody uses svk
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r--lib/bb/fetch/svk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/fetch/svk.py b/lib/bb/fetch/svk.py
index d863ccb6e..ce64cde60 100644
--- a/lib/bb/fetch/svk.py
+++ b/lib/bb/fetch/svk.py
@@ -67,10 +67,10 @@ class Svk(Fetch):
svkroot = ud.host + ud.path
- svkcmd = "svk co -r {%s} %s/%s" % (date, svkroot, ud.module)
+ svkcmd = "svk co -r {%s} %s/%s" % (ud.date, svkroot, ud.module)
if ud.revision:
- svkcmd = "svk co -r %s/%s" % (ud.revision, svkroot, ud.module)
+ svkcmd = "svk co -r %s %s/%s" % (ud.revision, svkroot, ud.module)
# create temp directory
localdata = data.createCopy(d)