From efd3696e70a6603f1a45faa4a172433514f0a487 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 25 Nov 2016 15:28:52 +0000 Subject: 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 --- meta-multimedia/recipes-connectivity/rygel/rygel_0.28.2.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-multimedia') diff --git a/meta-multimedia/recipes-connectivity/rygel/rygel_0.28.2.bb b/meta-multimedia/recipes-connectivity/rygel/rygel_0.28.2.bb index 79ff6e2b0..38fac65d5 100644 --- a/meta-multimedia/recipes-connectivity/rygel/rygel_0.28.2.bb +++ b/meta-multimedia/recipes-connectivity/rygel/rygel_0.28.2.bb @@ -48,12 +48,12 @@ PACKAGES_DYNAMIC = "${PN}-plugin-*" python populate_packages_prepend () { rygel_libdir = d.expand('${libdir}/rygel-${LIBV}') - postinst = d.getVar('plugin_postinst', True) + postinst = d.getVar('plugin_postinst') pkgs = [] pkgs += do_split_packages(d, oe.path.join(rygel_libdir, "plugins"), 'librygel-(.*)\.so$', d.expand('${PN}-plugin-%s'), 'Rygel plugin for %s', postinst=postinst, extra_depends=d.expand('${PN}')) pkgs += do_split_packages(d, oe.path.join(rygel_libdir, "plugins"), '(.*)\.plugin$', d.expand('${PN}-plugin-%s'), 'Rygel plugin for %s', postinst=postinst, extra_depends=d.expand('${PN}')) - metapkg = d.getVar('PN', True) + '-meta' + metapkg = d.getVar('PN') + '-meta' d.setVar('RDEPENDS_' + metapkg, ' '.join(pkgs)) } -- cgit v1.2.3-54-g00ecf