From: Phil Blundell Date: Tue, 21 Sep 2004 21:52:04 +0000 (+0000) Subject: also accept ".inc" as a legitimate file extension X-Git-Tag: 1.0~76 X-Git-Url: http://code.vuplus.com/gitweb/?a=commitdiff_plain;h=3e39808b342d2ac766c1741bf214145f85a7b2c4;p=vuplus_bitbake also accept ".inc" as a legitimate file extension --- diff --git a/bin/oe/parse/OEHandler.py b/bin/oe/parse/OEHandler.py index 78aa27c..c614a5a 100644 --- a/bin/oe/parse/OEHandler.py +++ b/bin/oe/parse/OEHandler.py @@ -30,7 +30,7 @@ classes = [ None, ] def supports(fn, d): localfn = localpath(fn, d) - return localfn[-3:] == ".oe" or localfn[-8:] == ".oeclass" + return localfn[-3:] == ".oe" or localfn[-8:] == ".oeclass" or localfn[-4:] == ".inc" def inherit(files, d): __inherit_cache = data.getVar('__inherit_cache', d) or ""