From 3e39808b342d2ac766c1741bf214145f85a7b2c4 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Tue, 21 Sep 2004 21:52:04 +0000 Subject: also accept ".inc" as a legitimate file extension --- bin/oe/parse/OEHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/oe/parse/OEHandler.py b/bin/oe/parse/OEHandler.py index 78aa27c55..c614a5a38 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 "" -- cgit 1.2.3-korg