summaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/parse_py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-11-05 11:14:56 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-11-05 11:14:56 +0000
commitc70a3471af3a92af4d23d4d2852dce83925783e7 (patch)
tree5581f7b26260d654e7c95a7f38e077012a470d54 /lib/bb/parse/parse_py
parent812f39806107aa4c7e1154ae55f33731092d8854 (diff)
downloadbitbake-c70a3471af3a92af4d23d4d2852dce83925783e7.tar.gz
BBHandler.py: make inherit fail if the class doesn't exist (#1478)
Diffstat (limited to 'lib/bb/parse/parse_py')
-rw-r--r--lib/bb/parse/parse_py/BBHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/parse/parse_py/BBHandler.py b/lib/bb/parse/parse_py/BBHandler.py
index 2f8710760..9654f2b57 100644
--- a/lib/bb/parse/parse_py/BBHandler.py
+++ b/lib/bb/parse/parse_py/BBHandler.py
@@ -62,7 +62,7 @@ def inherit(files, d):
if not file in __inherit_cache.split():
bb.msg.debug(2, bb.msg.domain.Parsing, "BB %s:%d: inheriting %s" % (fn, lineno, file))
__inherit_cache += " %s" % file
- include(fn, file, d)
+ include(fn, file, d, True)
data.setVar('__inherit_cache', __inherit_cache, d)