mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This commit is contained in:
committed by
Martin Jansa
parent
761639b9d7
commit
efd3696e70
@@ -1,6 +1,6 @@
|
||||
|
||||
def get_edje_fpu_setting(bb, d):
|
||||
if d.getVar('TARGET_FPU', 1) in [ 'soft' ]:
|
||||
if d.getVar('TARGET_FPU') in [ 'soft' ]:
|
||||
return "--enable-fixed-point"
|
||||
return ""
|
||||
|
||||
|
||||
@@ -57,6 +57,6 @@ python populate_packages_prepend () {
|
||||
pkgs = []
|
||||
|
||||
pkgs += do_split_packages(d, oe.path.join(lms_libdir, "plugins"), '^(.*)\.so$', d.expand('${PN}-plugin-%s'), 'LightMediaScanner plugin for %s', prepend=True, extra_depends=d.expand('${PN}'))
|
||||
metapkg = d.getVar('PN', True) + '-meta'
|
||||
metapkg = d.getVar('PN') + '-meta'
|
||||
d.setVar('RDEPENDS_' + metapkg, ' '.join(pkgs))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user