1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-01-12 03:10:15 +00:00

meta-arm-toolchain: Drop calls to datastore finalize

In d8e9ee8fd53b7620e72b2dfebb2e8d464b737dbb the finalize method was removed.

Signed-off-by: David Bagonyi <david.bagonyi@gmail.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
David Bagonyi
2022-11-18 12:01:04 +00:00
committed by Jon Mason
parent 7b4c17632d
commit 23aed71692
2 changed files with 0 additions and 3 deletions

View File

@@ -123,7 +123,6 @@ python external_arm_toolchain_version_handler () {
return
d = e.data
ld = d.createCopy()
ld.finalize()
d.setVar('EAT_VER_MAIN', eat_get_main_version(ld))
d.setVar('EAT_VER_GCC', eat_get_gcc_version(ld))

View File

@@ -74,7 +74,6 @@ python toolchain_metadata_setup () {
d = e.data
l = d.createCopy()
l.finalize()
oe_import(l)
external_toolchain = l.getVar('EXTERNAL_TOOLCHAIN', True)
@@ -99,7 +98,6 @@ def populate_toolchain_links(d):
from glob import glob
d = d.createCopy()
d.finalize()
pattern = bb.data.expand('${EXTERNAL_TOOLCHAIN}/bin/${TARGET_PREFIX}*', d)
files = glob(pattern)