diff options
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/ConfHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index 9d3ebe16f4..ea49f8ca93 100644 --- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py +++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py | |||
@@ -147,7 +147,7 @@ def handle(fn, data, include): | |||
147 | continue | 147 | continue |
148 | s = s.rstrip() | 148 | s = s.rstrip() |
149 | while s[-1] == '\\': | 149 | while s[-1] == '\\': |
150 | s2 = f.readline().strip() | 150 | s2 = f.readline().rstrip() |
151 | lineno = lineno + 1 | 151 | lineno = lineno + 1 |
152 | if (not s2 or s2 and s2[0] != "#") and s[0] == "#" : | 152 | if (not s2 or s2 and s2[0] != "#") and s[0] == "#" : |
153 | bb.fatal("There is a confusing multiline, partially commented expression on line %s of file %s (%s).\nPlease clarify whether this is all a comment or should be parsed." % (lineno, fn, s)) | 153 | bb.fatal("There is a confusing multiline, partially commented expression on line %s of file %s (%s).\nPlease clarify whether this is all a comment or should be parsed." % (lineno, fn, s)) |