diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/copy_buildsystem.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oe/copy_buildsystem.py b/meta/lib/oe/copy_buildsystem.py index 64755107d8..fb51b5183d 100644 --- a/meta/lib/oe/copy_buildsystem.py +++ b/meta/lib/oe/copy_buildsystem.py | |||
@@ -149,8 +149,9 @@ def merge_lockedsigs(copy_tasks, lockedsigs_main, lockedsigs_extra, merged_outpu | |||
149 | def create_locked_sstate_cache(lockedsigs, input_sstate_cache, output_sstate_cache, d, fixedlsbstring=""): | 149 | def create_locked_sstate_cache(lockedsigs, input_sstate_cache, output_sstate_cache, d, fixedlsbstring=""): |
150 | bb.note('Generating sstate-cache...') | 150 | bb.note('Generating sstate-cache...') |
151 | 151 | ||
152 | bb.process.run("gen-lockedsig-cache %s %s %s" % (lockedsigs, input_sstate_cache, output_sstate_cache)) | 152 | nativelsbstring = d.getVar('NATIVELSBSTRING', True) |
153 | bb.process.run("gen-lockedsig-cache %s %s %s %s" % (lockedsigs, input_sstate_cache, output_sstate_cache, nativelsbstring)) | ||
153 | if fixedlsbstring: | 154 | if fixedlsbstring: |
154 | nativedir = output_sstate_cache + '/' + d.getVar('NATIVELSBSTRING', True) | 155 | nativedir = output_sstate_cache + '/' + nativelsbstring |
155 | if os.path.isdir(nativedir): | 156 | if os.path.isdir(nativedir): |
156 | os.rename(nativedir, output_sstate_cache + '/' + fixedlsbstring) | 157 | os.rename(nativedir, output_sstate_cache + '/' + fixedlsbstring) |