]> code.ossystems Code Review - openembedded-core.git/commitdiff
typecheck.bbclass: update per current variable typing code
authorChristopher Larson <chris_larson@mentor.com>
Thu, 10 May 2012 02:40:14 +0000 (21:40 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 11 May 2012 16:50:24 +0000 (17:50 +0100)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
meta/classes/typecheck.bbclass

index 646cd4eed2fd5257bfeb571814a50b35a14528e9..353532d73cf919eedd2b7bb3f790a61dedc518a8 100644 (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