bitbake: tinfoil: add a parse_recipes() function

Python style recommends underscore based naming rather than camelCase,
and thus the former has been used for most of tinfoil's functions. Add
an underscored version of parseRecipes() for consistency and change the
one place we call it to use the new version.

(Bitbake rev: 821f6c41d850752d2bcc2ccd4f8e75b2897a0a3e)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton
2017-07-19 11:56:01 +02:00
committed by Richard Purdie
parent 192b2e1536
commit b0f0eaf63c
2 changed files with 8 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ def main():
if getattr(args, 'parserecipes', False):
tinfoil.config_data.disableTracking()
tinfoil.parseRecipes()
tinfoil.parse_recipes()
tinfoil.config_data.enableTracking()
return args.func(args)