summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/__init__.py')
-rw-r--r--bitbake/lib/bb/parse/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/__init__.py b/bitbake/lib/bb/parse/__init__.py
index 347609513b..4cd82f115b 100644
--- a/bitbake/lib/bb/parse/__init__.py
+++ b/bitbake/lib/bb/parse/__init__.py
@@ -99,12 +99,12 @@ def supports(fn, data):
99 return 1 99 return 1
100 return 0 100 return 0
101 101
102def handle(fn, data, include = 0): 102def handle(fn, data, include=0, baseconfig=False):
103 """Call the handler that is appropriate for this file""" 103 """Call the handler that is appropriate for this file"""
104 for h in handlers: 104 for h in handlers:
105 if h['supports'](fn, data): 105 if h['supports'](fn, data):
106 with data.inchistory.include(fn): 106 with data.inchistory.include(fn):
107 return h['handle'](fn, data, include) 107 return h['handle'](fn, data, include, baseconfig)
108 raise ParseError("not a BitBake file", fn) 108 raise ParseError("not a BitBake file", fn)
109 109
110def init(fn, data): 110def init(fn, data):