mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
getVar/setVar cleanups
Complete the bb.data.getVar/setVar replacements with accesses directly to the data store object. (From OE-Core rev: 2864ff6a4b3c3f9b3bbb6d2597243cc5d3715939) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -11,7 +11,7 @@ DPKG_ARCH ?= "${TARGET_ARCH}"
|
||||
PKGWRITEDIRDEB = "${WORKDIR}/deploy-debs"
|
||||
|
||||
python package_deb_fn () {
|
||||
bb.data.setVar('PKGFN', d.getVar('PKG'), d)
|
||||
d.setVar('PKGFN', d.getVar('PKG'))
|
||||
}
|
||||
|
||||
addtask package_deb_install
|
||||
@@ -409,7 +409,7 @@ python () {
|
||||
deps = (d.getVarFlag('do_package_write_deb', 'depends') or "").split()
|
||||
deps.append('dpkg-native:do_populate_sysroot')
|
||||
deps.append('virtual/fakeroot-native:do_populate_sysroot')
|
||||
bb.data.setVarFlag('do_package_write_deb', 'depends', " ".join(deps), d)
|
||||
d.setVarFlag('do_package_write_deb', 'depends', " ".join(deps))
|
||||
d.setVarFlag('do_package_write_deb', 'fakeroot', "1")
|
||||
d.setVarFlag('do_package_write_deb_setscene', 'fakeroot', "1")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user