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-26 11:05:01 +0100 |
commit | 307f25c23efecd3861a9f8337806be9ca8b0b9f1 (patch) | |
tree | abc48189d65e28f7235e92726a855b93fb4ca78f /meta/classes/buildhistory.bbclass | |
parent | 75bee4603dbabb4ed2cec3e2328cc24bf824a280 (diff) | |
download | poky-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/buildhistory.bbclass')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index dbfcc05d10..7a5534edd8 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass | |||
@@ -192,7 +192,7 @@ python buildhistory_emit_pkghistory() { | |||
192 | pe = d.getVar('PE') or "0" | 192 | pe = d.getVar('PE') or "0" |
193 | pv = d.getVar('PV') | 193 | pv = d.getVar('PV') |
194 | pr = d.getVar('PR') | 194 | pr = d.getVar('PR') |
195 | layer = bb.utils.get_file_layer(d.getVar('FILE', True), d) | 195 | layer = bb.utils.get_file_layer(d.getVar('FILE'), d) |
196 | 196 | ||
197 | pkgdata_dir = d.getVar('PKGDATA_DIR') | 197 | pkgdata_dir = d.getVar('PKGDATA_DIR') |
198 | packages = "" | 198 | packages = "" |