Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | meta: Replace bb.data.expand(xxx, d) -> d.expand(xxx) | Richard Purdie | 2012-03-05 | 1 | -3/+3 |
| | | | | | | | | sed \ -e 's:bb.data.\(expand([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data.expand *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||||
* | meta: Convert getVar/getVarFlag(xxx, 1) -> (xxx, True) | Richard Purdie | 2012-03-05 | 1 | -15/+15 |
| | | | | | | | | | | | | Using "1" with getVar is bad coding style and "True" is preferred. This patch is a sed over the meta directory of the form: sed \ -e 's:\(\.getVar([^,()]*, \)1 *):\1True):g' \ -e 's:\(\.getVarFlag([^,()]*, [^,()]*, \)1 *):\1True):g' \ -i `grep -ril getVar *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||||
* | import recipe_sanity.bbclass from oe master | Phil Blundell | 2011-06-14 | 1 | -0/+179 |
This is a verbatim copy of the corresponding class from oe master. Signed-off-by: Phil Blundell <philb@gnu.org> |