diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-03 11:12:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-03 11:15:21 +0000 |
commit | 9cab832b1e85822fa9be5ea9fa0415f48fba86f2 (patch) | |
tree | 82d578c8bea72fd76ae152a0d2dbea0e6364a6cb /meta | |
parent | 54477664dc13c6aa15b3246f328b66591a340659 (diff) | |
download | openembedded-core-9cab832b1e85822fa9be5ea9fa0415f48fba86f2.tar.gz openembedded-core-9cab832b1e85822fa9be5ea9fa0415f48fba86f2.tar.bz2 openembedded-core-9cab832b1e85822fa9be5ea9fa0415f48fba86f2.zip |
populate_ext_sdk: Append to SSTATE_MIRRORS
We need to appent to SSTATE_MIRRORS in case other areas of code are also
setting the variable.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 51b98a81aa..fb38ebc1f1 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -312,7 +312,7 @@ python copy_buildsystem () { f.write('BUILDCFG_HEADER = ""\n\n') # Map gcc-dependent uninative sstate cache for installer usage - f.write('SSTATE_MIRRORS = "file://universal/(.*) file://universal-4.9/\\1\\nfile://universal-4.9/(.*) file://universal-4.8/\\1"\n\n') + f.write('SSTATE_MIRRORS += " file://universal/(.*) file://universal-4.9/\\1 file://universal-4.9/(.*) file://universal-4.8/\\1"\n\n') # Allow additional config through sdk-extra.conf fn = bb.cookerdata.findConfigFile('sdk-extra.conf', d) |