diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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 |