diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-08 11:07:24 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-03-08 15:23:06 -0800 |
commit | 1af309aa19d20718f000d3e2265fef187088e374 (patch) | |
tree | b8856d07d86bba3eafaad8cb62d91c2e1d5729fa /meta/classes | |
parent | 13d14d0ddfb00ac0535a58243a38ee01d483c719 (diff) | |
download | poky-1af309aa19d20718f000d3e2265fef187088e374.tar.gz |
sstate: Ensure the SRCURI fetcher cache is not used for sstate
(From OE-Core rev: 115b3b95e87320b4a6a678df45fece06469dfaeb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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): | |||
354 | # Try a fetch from the sstate mirror, if it fails just return and | 354 | # Try a fetch from the sstate mirror, if it fails just return and |
355 | # we will build the package | 355 | # we will build the package |
356 | try: | 356 | try: |
357 | fetcher = bb.fetch2.Fetch([srcuri], localdata) | 357 | fetcher = bb.fetch2.Fetch([srcuri], localdata, cache=False) |
358 | fetcher.download() | 358 | fetcher.download() |
359 | 359 | ||
360 | # Need to optimise this, if using file:// urls, the fetcher just changes the local path | 360 | # Need to optimise this, if using file:// urls, the fetcher just changes the local path |