summaryrefslogtreecommitdiffstats
path: root/meta/classes/typecheck.bbclass
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2012-05-09 21:40:14 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-11 17:50:50 +0100
commit49afb622c9fd214c093e9016e35ab84a56651af6 (patch)
treee0f11a5e6012fb9a348d4319bd3ef606bfd9bf53 /meta/classes/typecheck.bbclass
parent539849c3dad276f706802c2266f1652f16128fcc (diff)
downloadpoky-49afb622c9fd214c093e9016e35ab84a56651af6.tar.gz
typecheck.bbclass: update per current variable typing code
(From OE-Core rev: 13fcda4b158ce944d64b22bd5b63ce0f51faad67) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/typecheck.bbclass')
-rw-r--r--meta/classes/typecheck.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/typecheck.bbclass b/meta/classes/typecheck.bbclass
index 646cd4eed2..353532d73c 100644
--- a/meta/classes/typecheck.bbclass
+++ b/meta/classes/typecheck.bbclass
@@ -7,6 +7,6 @@ python check_types() {
7 if isinstance(e, bb.event.ConfigParsed): 7 if isinstance(e, bb.event.ConfigParsed):
8 for key in e.data.keys(): 8 for key in e.data.keys():
9 if e.data.getVarFlag(key, "type"): 9 if e.data.getVarFlag(key, "type"):
10 oe.types.value(key, e.data) 10 oe.data.typed_value(key, e.data)
11} 11}
12addhandler check_types 12addhandler check_types