aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2018-11-14 17:46:41 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-16 13:56:48 +0000
commit79e62eef1c93f742bf71e9f25db57fdd2ffedd02 (patch)
treead1559a80ec16e01ea320371762ea4c3d178437d /classes
parent4adc582d2df7fdb9e51c4ebb5e66bbd21165b4dc (diff)
downloadbitbake-79e62eef1c93f742bf71e9f25db57fdd2ffedd02.tar.gz
BBHandler: Fix __python_func_regexp__ for comment lines
Fixed: - Add a comment in base.bbclass: def oe_import(d): import sys # Comment bbpath = d.getVar("BBPATH").split(":") [snip] Note, '# Comment' is started with '#', it is legal in python's syntax (though maybe not a good style), but bitbake reported errors: $ bitbake -p ERROR: ParseError at /path/to/base.bbclass:20: unparsed line: ' bbpath = d.getVar("BBPATH").split(":")' This error report would mislead people, the real problem is that '# Comment' is not supported, but it reports the next line, this may make it hard to debug the code are complicated. We can make __python_func_regexp__ handle '^#' to fix the problem, since it already can handle blank line "^$" in a python function, so it would be pretty safe to handle "^#" as well. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'classes')
0 files changed, 0 insertions, 0 deletions