summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb/fetch2
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-07 21:12:51 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-07 21:13:13 +0000
commit500c66337c7cb5e3044a02ef761097713e47f523 (patch)
treee41cd48b7b6103e663343c1a38897019405d960c /bitbake/lib/bb/fetch2
parentd4b4b48addfa781d7b94965e0477974c3fb6dbb3 (diff)
downloadopenembedded-core-500c66337c7cb5e3044a02ef761097713e47f523.tar.gz
openembedded-core-500c66337c7cb5e3044a02ef761097713e47f523.tar.bz2
openembedded-core-500c66337c7cb5e3044a02ef761097713e47f523.tar.xz
openembedded-core-500c66337c7cb5e3044a02ef761097713e47f523.zip
bitbake/fetch2:Fetch Make using the fn based cache optional
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index a37bd2b53..fcece9d04 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -774,7 +774,7 @@ class FetchMethod(object):
return "%s-%s" % (key, bb.data.getVar("PN", d, True) or "")
class Fetch(object):
- def __init__(self, urls, d):
+ def __init__(self, urls, d, cache = True):
if len(urls) == 0:
urls = d.getVar("SRC_URI", True).split()
self.urls = urls
@@ -782,14 +782,15 @@ class Fetch(object):
self.ud = {}
fn = bb.data.getVar('FILE', d, True)
- if fn in urldata_cache:
+ if cache and fn in urldata_cache:
self.ud = urldata_cache[fn]
for url in urls:
if url not in self.ud:
self.ud[url] = FetchData(url, d)
- urldata_cache[fn] = self.ud
+ if cache:
+ urldata_cache[fn] = self.ud
def localpath(self, url):
if url not in self.urls: