From b045ab32227baaec940698dad79aac0e41c5ee8a Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Sun, 17 May 2009 13:00:42 +0200 Subject: bitbake: [parse] Move inherit handling to method Signed-off-by: Richard Purdie --- bitbake/lib/bb/parse/parse_py/BBHandler.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'bitbake/lib/bb/parse/parse_py/BBHandler.py') diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index 6cb8d560f2..47502adc3c 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py @@ -168,6 +168,11 @@ def handleBBHandlers(m, d): data.setVarFlag(h, "handler", 1, d) data.setVar('__BBHANDLERS', bbhands, d) +def handleInherit(m, d): + files = m.group(1) + n = __word__.findall(files) + inherit(n, d) + def supports(fn, d): return fn[-3:] == ".bb" or fn[-8:] == ".bbclass" or fn[-4:] == ".inc" @@ -376,10 +381,7 @@ def feeder(lineno, s, fn, root, d): m = __inherit_regexp__.match(s) if m: - - files = m.group(1) - n = __word__.findall(files) - inherit(n, d) + handleInherit(m, d) return from bb.parse import ConfHandler -- cgit v1.2.3-54-g00ecf