From: Richard Purdie Date: Mon, 7 Feb 2011 21:12:51 +0000 (+0000) Subject: bitbake/fetch2:Fetch Make using the fn based cache optional X-Git-Tag: 2011-1~2461 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=500c66337c7cb5e3044a02ef761097713e47f523;p=openembedded-core.git bitbake/fetch2:Fetch Make using the fn based cache optional Signed-off-by: Richard Purdie --- 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: