diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-07 14:33:53 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-07 14:33:53 +0100 |
commit | 647713050b091e55497aee5647b6d0d0abc08411 (patch) | |
tree | cdade357ee25230407780993eaeaefab58cd402d /bitbake/lib/bb/codeparser.py | |
parent | 1c24729697a75a7bac325e26b9c1102aa6b08a3d (diff) | |
download | openembedded-core-647713050b091e55497aee5647b6d0d0abc08411.tar.gz openembedded-core-647713050b091e55497aee5647b6d0d0abc08411.tar.bz2 openembedded-core-647713050b091e55497aee5647b6d0d0abc08411.zip |
bitbake/codeparser: Deal with functions with trailing whitespace
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/codeparser.py')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index 951bd47b88..7d40835cb8 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py @@ -15,7 +15,14 @@ except ImportError: def check_indent(codestr): """If the code is indented, add a top level piece of code to 'remove' the indentation""" - if codestr[0] is " " or codestr[0] is " ": + i = 0 + while codestr[i] in ["\n", " ", " "]: + i = i + 1 + + if i == 0: + return codestr + + if codestr[i-1] is " " or codestr[i-1] is " ": return "if 1:\n" + codestr return codestr |