summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/classes/typecheck.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/classes/typecheck.bbclass')
-rw-r--r--yocto-poky/meta/classes/typecheck.bbclass12
1 files changed, 0 insertions, 12 deletions
diff --git a/yocto-poky/meta/classes/typecheck.bbclass b/yocto-poky/meta/classes/typecheck.bbclass
deleted file mode 100644
index 6bff7c713..000000000
--- a/yocto-poky/meta/classes/typecheck.bbclass
+++ /dev/null
@@ -1,12 +0,0 @@
-# Check types of bitbake configuration variables
-#
-# See oe.types for details.
-
-python check_types() {
- import oe.types
- for key in e.data.keys():
- if e.data.getVarFlag(key, "type", True):
- oe.data.typed_value(key, e.data)
-}
-addhandler check_types
-check_types[eventmask] = "bb.event.ConfigParsed"