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>
This commit is contained in:
Christopher Larson 2012-05-09 21:40:14 -05:00 committed by Richard Purdie
parent 539849c3da
commit 49afb622c9
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ python check_types() {
if isinstance(e, bb.event.ConfigParsed):
for key in e.data.keys():
if e.data.getVarFlag(key, "type"):
oe.types.value(key, e.data)
oe.data.typed_value(key, e.data)
}
addhandler check_types