aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-09-21 21:52:04 +0000
committerPhil Blundell <philb@gnu.org>2004-09-21 21:52:04 +0000
commit3e39808b342d2ac766c1741bf214145f85a7b2c4 (patch)
tree0e38d7021aaab74dae44451ca427994790f6edda /bin
parent7bacc66cf2b8fa3469cfac7f5e658dc0278ab386 (diff)
downloadbitbake-3e39808b342d2ac766c1741bf214145f85a7b2c4.tar.gz
also accept ".inc" as a legitimate file extension
Diffstat (limited to 'bin')
-rw-r--r--bin/oe/parse/OEHandler.py2
1 files changed, 1 insertions, 1 deletions
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 ""