diff options
author | Ming Liu <liu.ming50@gmail.com> | 2017-09-24 06:03:49 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-25 14:18:38 +0100 |
commit | dbc0eaf478feb3f752ae22fd184984494fc85d0a (patch) | |
tree | 3dd1c9cfbf31fcce6d2425f9bd0ae172ebcc19f9 /meta/classes/rootfs-postcommands.bbclass | |
parent | 9c1ec618860404bef0348bb17efcfb5c93cc360f (diff) | |
download | openembedded-core-dbc0eaf478feb3f752ae22fd184984494fc85d0a.tar.gz openembedded-core-dbc0eaf478feb3f752ae22fd184984494fc85d0a.tar.bz2 openembedded-core-dbc0eaf478feb3f752ae22fd184984494fc85d0a.zip |
meta: drop True option to getVar calls
Search made with the following regex: getVar ?\((.*), True\).
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfs-postcommands.bbclass')
-rw-r--r-- | meta/classes/rootfs-postcommands.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass index 3755f94090..5391e7a8e3 100644 --- a/meta/classes/rootfs-postcommands.bbclass +++ b/meta/classes/rootfs-postcommands.bbclass @@ -318,5 +318,5 @@ python rootfs_log_check_recommends() { continue if 'unsatisfied recommendation for' in line: - bb.warn('[log_check] %s: %s' % (d.getVar('PN', True), line)) + bb.warn('[log_check] %s: %s' % (d.getVar('PN'), line)) } |