diff options
author | Ming Liu <liu.ming50@gmail.com> | 2017-09-24 06:04:24 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-26 11:05:01 +0100 |
commit | 5c67faff20c6bb75ab005690b65da5c2787fc426 (patch) | |
tree | 0bde5e7218f35a9c29f19eaf07a072f3e37e7723 /scripts/lib/checklayer/__init__.py | |
parent | 307f25c23efecd3861a9f8337806be9ca8b0b9f1 (diff) | |
download | poky-5c67faff20c6bb75ab005690b65da5c2787fc426.tar.gz |
scripts: drop True option to getVar calls
Search made with the following regex: getVar ?\((.*), True\).
(From OE-Core rev: b848c3cb495905605283c57c79f2ed8ca17758db)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/checklayer/__init__.py')
-rw-r--r-- | scripts/lib/checklayer/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py index 6c2b86a79a..63952616ba 100644 --- a/scripts/lib/checklayer/__init__.py +++ b/scripts/lib/checklayer/__init__.py | |||
@@ -46,16 +46,16 @@ def _get_layer_collections(layer_path, lconf=None, data=None): | |||
46 | raise LayerError(exc) | 46 | raise LayerError(exc) |
47 | ldata.expandVarref('LAYERDIR') | 47 | ldata.expandVarref('LAYERDIR') |
48 | 48 | ||
49 | collections = (ldata.getVar('BBFILE_COLLECTIONS', True) or '').split() | 49 | collections = (ldata.getVar('BBFILE_COLLECTIONS') or '').split() |
50 | if not collections: | 50 | if not collections: |
51 | name = os.path.basename(layer_path) | 51 | name = os.path.basename(layer_path) |
52 | collections = [name] | 52 | collections = [name] |
53 | 53 | ||
54 | collections = {c: {} for c in collections} | 54 | collections = {c: {} for c in collections} |
55 | for name in collections: | 55 | for name in collections: |
56 | priority = ldata.getVar('BBFILE_PRIORITY_%s' % name, True) | 56 | priority = ldata.getVar('BBFILE_PRIORITY_%s' % name) |
57 | pattern = ldata.getVar('BBFILE_PATTERN_%s' % name, True) | 57 | pattern = ldata.getVar('BBFILE_PATTERN_%s' % name) |
58 | depends = ldata.getVar('LAYERDEPENDS_%s' % name, True) | 58 | depends = ldata.getVar('LAYERDEPENDS_%s' % name) |
59 | collections[name]['priority'] = priority | 59 | collections[name]['priority'] = priority |
60 | collections[name]['pattern'] = pattern | 60 | collections[name]['pattern'] = pattern |
61 | collections[name]['depends'] = depends | 61 | collections[name]['depends'] = depends |