From: Christopher Larson Date: Thu, 10 May 2012 02:40:14 +0000 (-0500) Subject: typecheck.bbclass: update per current variable typing code X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49afb622c9fd214c093e9016e35ab84a56651af6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git typecheck.bbclass: update per current variable typing code (From OE-Core rev: 13fcda4b158ce944d64b22bd5b63ce0f51faad67) Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- diff --git a/meta/classes/typecheck.bbclass b/meta/classes/typecheck.bbclass index 646cd4eed2f..353532d73cf 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