diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-10-17 21:07:40 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-10-17 21:07:40 +0100 |
commit | ac4d25c89a5133790ec163ca6e1a1de0b8624ca1 (patch) | |
tree | 06b2d4d05354c29800172d2890fccf458c490651 /bitbake/lib | |
parent | 627d9b1bde25422ccde4e313ee3c954b5c9b2932 (diff) | |
download | poky-ac4d25c89a5133790ec163ca6e1a1de0b8624ca1.tar.gz |
bitbake: Fix svk fetcher
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch/svk.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch/svk.py b/bitbake/lib/bb/fetch/svk.py index d863ccb6e0..442f85804f 100644 --- a/bitbake/lib/bb/fetch/svk.py +++ b/bitbake/lib/bb/fetch/svk.py | |||
@@ -25,7 +25,7 @@ This implementation is for svk. It is based on the svn implementation | |||
25 | # | 25 | # |
26 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig | 26 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
27 | 27 | ||
28 | import os, re | 28 | import os |
29 | import bb | 29 | import bb |
30 | from bb import data | 30 | from bb import data |
31 | from bb.fetch import Fetch | 31 | from bb.fetch import Fetch |
@@ -67,10 +67,10 @@ class Svk(Fetch): | |||
67 | 67 | ||
68 | svkroot = ud.host + ud.path | 68 | svkroot = ud.host + ud.path |
69 | 69 | ||
70 | svkcmd = "svk co -r {%s} %s/%s" % (date, svkroot, ud.module) | 70 | svkcmd = "svk co -r {%s} %s/%s" % (ud.date, svkroot, ud.module) |
71 | 71 | ||
72 | if ud.revision: | 72 | if ud.revision: |
73 | svkcmd = "svk co -r %s/%s" % (ud.revision, svkroot, ud.module) | 73 | svkcmd = "svk co -r %s %s/%s" % (ud.revision, svkroot, ud.module) |
74 | 74 | ||
75 | # create temp directory | 75 | # create temp directory |
76 | localdata = data.createCopy(d) | 76 | localdata = data.createCopy(d) |