summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs-postcommands.bbclass
diff options
context:
space:
mode:
authorMing Liu <liu.ming50@gmail.com>2017-09-24 06:03:49 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-26 11:05:01 +0100
commit307f25c23efecd3861a9f8337806be9ca8b0b9f1 (patch)
treeabc48189d65e28f7235e92726a855b93fb4ca78f /meta/classes/rootfs-postcommands.bbclass
parent75bee4603dbabb4ed2cec3e2328cc24bf824a280 (diff)
downloadpoky-307f25c23efecd3861a9f8337806be9ca8b0b9f1.tar.gz
meta: drop True option to getVar calls
Search made with the following regex: getVar ?\((.*), True\). (From OE-Core rev: dbc0eaf478feb3f752ae22fd184984494fc85d0a) 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.bbclass2
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() {
318 continue 318 continue
319 319
320 if 'unsatisfied recommendation for' in line: 320 if 'unsatisfied recommendation for' in line:
321 bb.warn('[log_check] %s: %s' % (d.getVar('PN', True), line)) 321 bb.warn('[log_check] %s: %s' % (d.getVar('PN'), line))
322} 322}