diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 12:08:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 16:52:42 +0000 |
commit | 37624b97450f2ba3d6fad3e1e51818486451447e (patch) | |
tree | 6d5286aeb128da853f829ee28923005fb29405fe /bitbake/lib/bb/fetch2/cvs.py | |
parent | 1d3fdc85c64b07a228bcf2a370024c250f6e6623 (diff) | |
download | poky-37624b97450f2ba3d6fad3e1e51818486451447e.tar.gz |
bitbake/fetch2: Update forcefetch and mirror handling to clean up, simplfy and bug fix the code
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/cvs.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/cvs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/cvs.py b/bitbake/lib/bb/fetch2/cvs.py index b77e742c33..69c31e7561 100644 --- a/bitbake/lib/bb/fetch2/cvs.py +++ b/bitbake/lib/bb/fetch2/cvs.py | |||
@@ -65,9 +65,11 @@ class Cvs(FetchMethod): | |||
65 | 65 | ||
66 | ud.localfile = data.expand('%s_%s_%s_%s%s%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.tag, ud.date, norecurse, fullpath), d) | 66 | ud.localfile = data.expand('%s_%s_%s_%s%s%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.tag, ud.date, norecurse, fullpath), d) |
67 | 67 | ||
68 | def forcefetch(self, url, ud, d): | 68 | def need_update(self, url, ud, d): |
69 | if (ud.date == "now"): | 69 | if (ud.date == "now"): |
70 | return True | 70 | return True |
71 | if not os.path.exists(ud.localpath): | ||
72 | return True | ||
71 | return False | 73 | return False |
72 | 74 | ||
73 | def download(self, loc, ud, d): | 75 | def download(self, loc, ud, d): |