From: Richard Purdie Date: Tue, 8 Mar 2011 19:07:24 +0000 (-0800) Subject: sstate: Ensure the SRCURI fetcher cache is not used for sstate X-Git-Tag: 2011-1~2128 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=115b3b95e87320b4a6a678df45fece06469dfaeb;p=openembedded-core.git sstate: Ensure the SRCURI fetcher cache is not used for sstate Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 6f836a60b6..4d8443be40 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -354,7 +354,7 @@ def pstaging_fetch(sstatepkg, d): # Try a fetch from the sstate mirror, if it fails just return and # we will build the package try: - fetcher = bb.fetch2.Fetch([srcuri], localdata) + fetcher = bb.fetch2.Fetch([srcuri], localdata, cache=False) fetcher.download() # Need to optimise this, if using file:// urls, the fetcher just changes the local path