summaryrefslogtreecommitdiffstats
path: root/meta/classes/typecheck.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/typecheck.bbclass')
-rw-r--r--meta/classes/typecheck.bbclass8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/classes/typecheck.bbclass b/meta/classes/typecheck.bbclass
index 6bff7c7138..160f7a024b 100644
--- a/meta/classes/typecheck.bbclass
+++ b/meta/classes/typecheck.bbclass
@@ -1,3 +1,9 @@
+#
+# Copyright OpenEmbedded Contributors
+#
+# SPDX-License-Identifier: MIT
+#
+
# Check types of bitbake configuration variables
#
# See oe.types for details.
@@ -5,7 +11,7 @@
python check_types() {
import oe.types
for key in e.data.keys():
- if e.data.getVarFlag(key, "type", True):
+ if e.data.getVarFlag(key, "type"):
oe.data.typed_value(key, e.data)
}
addhandler check_types