From: Christopher Larson Date: Thu, 10 May 2012 02:40:14 +0000 (-0500) Subject: typecheck.bbclass: update per current variable typing code X-Git-Tag: 2015-4~10669 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=13fcda4b158ce944d64b22bd5b63ce0f51faad67;p=openembedded-core.git typecheck.bbclass: update per current variable typing code Signed-off-by: Christopher Larson --- 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() { 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