summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk_ext.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r--meta/classes/populate_sdk_ext.bbclass7
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index e2019f9bbf..3ddbb46eda 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -401,10 +401,9 @@ python copy_buildsystem () {
401 if os.path.exists(builddir + dest_stub): 401 if os.path.exists(builddir + dest_stub):
402 shutil.copyfile(builddir + dest_stub, baseoutpath + dest_stub) 402 shutil.copyfile(builddir + dest_stub, baseoutpath + dest_stub)
403 403
404 if os.path.exists(builddir + '/cache/bb_unihashes.dat'): 404 cachedir = os.path.join(baseoutpath, 'cache')
405 bb.parse.siggen.save_unitaskhashes() 405 bb.utils.mkdirhier(cachedir)
406 bb.utils.mkdirhier(os.path.join(baseoutpath, 'cache')) 406 bb.parse.siggen.copy_unitaskhashes(cachedir)
407 shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat')
408 407
409 # If PR Service is in use, we need to export this as well 408 # If PR Service is in use, we need to export this as well
410 bb.note('Do we have a pr database?') 409 bb.note('Do we have a pr database?')