From: Holger Freyther Date: Sun, 17 May 2009 11:00:42 +0000 (+0200) Subject: bitbake: [parse] Move inherit handling to method X-Git-Tag: 2011-1~6251 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b045ab32227baaec940698dad79aac0e41c5ee8a;p=openembedded-core.git bitbake: [parse] Move inherit handling to method Signed-off-by: Richard Purdie --- 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