From 500c66337c7cb5e3044a02ef761097713e47f523 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 7 Feb 2011 21:12:51 +0000 Subject: bitbake/fetch2:Fetch Make using the fn based cache optional Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bitbake/lib/bb/fetch2') diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index a37bd2b53e..fcece9d04b 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: -- cgit v1.2.3-54-g00ecf