diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-12-14 21:13:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-16 10:23:23 +0000 |
commit | c4e2c59088765d1f1de7ec57cde91980f887c2ff (patch) | |
tree | a2fda8ac5916fb59a711e9220c2177008cca9347 /meta/classes/gio-module-cache.bbclass | |
parent | d5e67725ac11e3296cad104470931ffa16824b90 (diff) | |
download | poky-c4e2c59088765d1f1de7ec57cde91980f887c2ff.tar.gz |
meta: 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\)
(From OE-Core rev: 7c552996597faaee2fbee185b250c0ee30ea3b5f)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gio-module-cache.bbclass')
-rw-r--r-- | meta/classes/gio-module-cache.bbclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/gio-module-cache.bbclass b/meta/classes/gio-module-cache.bbclass index 91461b11e7..39b7bef720 100644 --- a/meta/classes/gio-module-cache.bbclass +++ b/meta/classes/gio-module-cache.bbclass | |||
@@ -17,21 +17,21 @@ fi | |||
17 | } | 17 | } |
18 | 18 | ||
19 | python populate_packages_append () { | 19 | python populate_packages_append () { |
20 | packages = d.getVar('GIO_MODULE_PACKAGES', True).split() | 20 | packages = d.getVar('GIO_MODULE_PACKAGES').split() |
21 | 21 | ||
22 | for pkg in packages: | 22 | for pkg in packages: |
23 | bb.note("adding gio-module-cache postinst and postrm scripts to %s" % pkg) | 23 | bb.note("adding gio-module-cache postinst and postrm scripts to %s" % pkg) |
24 | 24 | ||
25 | postinst = d.getVar('pkg_postinst_%s' % pkg, True) | 25 | postinst = d.getVar('pkg_postinst_%s' % pkg) |
26 | if not postinst: | 26 | if not postinst: |
27 | postinst = '#!/bin/sh\n' | 27 | postinst = '#!/bin/sh\n' |
28 | postinst += d.getVar('gio_module_cache_common', True) | 28 | postinst += d.getVar('gio_module_cache_common') |
29 | d.setVar('pkg_postinst_%s' % pkg, postinst) | 29 | d.setVar('pkg_postinst_%s' % pkg, postinst) |
30 | 30 | ||
31 | postrm = d.getVar('pkg_postrm_%s' % pkg, True) | 31 | postrm = d.getVar('pkg_postrm_%s' % pkg) |
32 | if not postrm: | 32 | if not postrm: |
33 | postrm = '#!/bin/sh\n' | 33 | postrm = '#!/bin/sh\n' |
34 | postrm += d.getVar('gio_module_cache_common', True) | 34 | postrm += d.getVar('gio_module_cache_common') |
35 | d.setVar('pkg_postrm_%s' % pkg, postrm) | 35 | d.setVar('pkg_postrm_%s' % pkg, postrm) |
36 | } | 36 | } |
37 | 37 | ||