mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
meta: remove remaining True option to getVar calls
This is a complementary fix to commit 7c552996: [ meta: remove True option to getVar calls ] it intended to remove all True option to getVar calls, but there are still some remaining. Search made with the following regex: getVar ?\((.*), True\) (From OE-Core rev: 87d03ffe03d6f01e360bfd51714be96e62506e0a) Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -232,7 +232,7 @@ python pfs_cleanpkgs () {
|
||||
for pkgclass in (d.getVar('PACKAGE_CLASSES') or '').split():
|
||||
if pkgclass.startswith('package_'):
|
||||
pkgtype = pkgclass.split('_', 1)[1]
|
||||
deploydir = d.getVar('DEPLOY_DIR_%s' % pkgtype.upper(), True)
|
||||
deploydir = d.getVar('DEPLOY_DIR_%s' % pkgtype.upper())
|
||||
prepath = deploydir + '-prediff'
|
||||
pcmanifest = os.path.join(prepath, d.expand('pkg-compare-manifest-${MULTIMACH_TARGET_SYS}-${PN}'))
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user