summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tinfoil.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/tinfoil.py')
-rw-r--r--bitbake/lib/bb/tinfoil.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index 65ebdc2b78..ddc7b062a0 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/lib/bb/tinfoil.py
@@ -289,7 +289,13 @@ class Tinfoil:
289 289
290 def parseRecipes(self): 290 def parseRecipes(self):
291 """ 291 """
292 Force a parse of all recipes. Normally you should specify 292 Legacy function - use parse_recipes() instead.
293 """
294 self.parse_recipes()
295
296 def parse_recipes(self):
297 """
298 Load information on all recipes. Normally you should specify
293 config_only=False when calling prepare() instead of using this 299 config_only=False when calling prepare() instead of using this
294 function; this function is designed for situations where you need 300 function; this function is designed for situations where you need
295 to initialise Tinfoil and use it with config_only=True first and 301 to initialise Tinfoil and use it with config_only=True first and