1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-16 15:57:04 +00:00

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>
This commit is contained in:
Ming Liu
2017-09-24 06:03:49 +02:00
committed by Richard Purdie
parent 75bee4603d
commit 307f25c23e
11 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -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))
}