mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
meta: Replace bb.data.expand(xxx, d) -> d.expand(xxx)
sed \ -e 's:bb.data.\(expand([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data.expand *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -20,7 +20,7 @@ python do_package_deb_install () {
|
||||
pkgfn = d.getVar('PKGFN', True)
|
||||
rootfs = d.getVar('IMAGE_ROOTFS', True)
|
||||
debdir = d.getVar('DEPLOY_DIR_DEB', True)
|
||||
apt_config = bb.data.expand('${STAGING_ETCDIR_NATIVE}/apt/apt.conf', d)
|
||||
apt_config = d.expand('${STAGING_ETCDIR_NATIVE}/apt/apt.conf')
|
||||
stagingbindir = d.getVar('STAGING_BINDIR_NATIVE', True)
|
||||
tmpdir = d.getVar('TMPDIR', True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user