summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-01-23 22:12:09 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-01-23 22:12:09 +0000
commit234c29e0b72be4f3eec1a3a3f5a75f3d39540fbb (patch)
treea0bac749a61966fb3277dc229c4f9858af4ee7e3
parentc33962d98ecb382a46189850598ce05f935085fc (diff)
downloadbitbake-234c29e0b72be4f3eec1a3a3f5a75f3d39540fbb.tar.gz
bitbake/lib/bb/parse/parse_py/ConfHandler.py:
if we included the required file without an error we parsed that line and may return. This oversight was spotted by Richard Purdie. Thanks again.
-rw-r--r--lib/bb/parse/parse_py/ConfHandler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/parse/parse_py/ConfHandler.py b/lib/bb/parse/parse_py/ConfHandler.py
index f2eb53881..90978300a 100644
--- a/lib/bb/parse/parse_py/ConfHandler.py
+++ b/lib/bb/parse/parse_py/ConfHandler.py
@@ -202,6 +202,7 @@ def feeder(lineno, s, fn, data = bb.data.init()):
if m:
s = bb.data.expand(m.group(1), data)
include(fn, s, data, True)
+ return
raise ParseError("%s:%d: unparsed line: '%s'" % (fn, lineno, s));