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-dev | |
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-dev')
-rw-r--r-- | bitbake-dev/lib/bb/fetch/svk.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake-dev/lib/bb/fetch/svk.py b/bitbake-dev/lib/bb/fetch/svk.py index 4dfae1819b..442f85804f 100644 --- a/bitbake-dev/lib/bb/fetch/svk.py +++ b/bitbake-dev/lib/bb/fetch/svk.py | |||
@@ -67,11 +67,10 @@ class Svk(Fetch): | |||
67 | 67 | ||
68 | svkroot = ud.host + ud.path | 68 | svkroot = ud.host + ud.path |
69 | 69 | ||
70 | # pyflakes claims date is not known... it looks right | 70 | svkcmd = "svk co -r {%s} %s/%s" % (ud.date, svkroot, ud.module) |
71 | svkcmd = "svk co -r {%s} %s/%s" % (date, svkroot, ud.module) | ||
72 | 71 | ||
73 | if ud.revision: | 72 | if ud.revision: |
74 | svkcmd = "svk co -r %s/%s" % (ud.revision, svkroot, ud.module) | 73 | svkcmd = "svk co -r %s %s/%s" % (ud.revision, svkroot, ud.module) |
75 | 74 | ||
76 | # create temp directory | 75 | # create temp directory |
77 | localdata = data.createCopy(d) | 76 | localdata = data.createCopy(d) |