diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-14 14:30:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-15 06:59:44 +0100 |
commit | 4b8b1105a59f5d5849a9a40c190e45e882571995 (patch) | |
tree | 7f5885689b6a114216696a50eba5b0c120d57d30 /bitbake/lib | |
parent | 8e7282c0320c95cacf14aee450c950f0a10b7999 (diff) | |
download | poky-4b8b1105a59f5d5849a9a40c190e45e882571995.tar.gz |
bitbake: providers: We don't depend on previous build results
Back in history the code did depend on previous build results. This was
bad for determinism and we no longer do that. Update comments to match
the current behaviour.
(Bitbake rev: c3fa7e561c22786d3ac57d04c367aa50f1b3b820)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/providers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/providers.py b/bitbake/lib/bb/providers.py index ffa532cff3..8195d62a11 100644 --- a/bitbake/lib/bb/providers.py +++ b/bitbake/lib/bb/providers.py | |||
@@ -226,7 +226,7 @@ def findBestProvider(pn, cfgData, dataCache, pkg_pn = None, item = None): | |||
226 | def _filterProviders(providers, item, cfgData, dataCache): | 226 | def _filterProviders(providers, item, cfgData, dataCache): |
227 | """ | 227 | """ |
228 | Take a list of providers and filter/reorder according to the | 228 | Take a list of providers and filter/reorder according to the |
229 | environment variables and previous build results | 229 | environment variables |
230 | """ | 230 | """ |
231 | eligible = [] | 231 | eligible = [] |
232 | preferred_versions = {} | 232 | preferred_versions = {} |
@@ -283,7 +283,7 @@ def _filterProviders(providers, item, cfgData, dataCache): | |||
283 | def filterProviders(providers, item, cfgData, dataCache): | 283 | def filterProviders(providers, item, cfgData, dataCache): |
284 | """ | 284 | """ |
285 | Take a list of providers and filter/reorder according to the | 285 | Take a list of providers and filter/reorder according to the |
286 | environment variables and previous build results | 286 | environment variables |
287 | Takes a "normal" target item | 287 | Takes a "normal" target item |
288 | """ | 288 | """ |
289 | 289 | ||
@@ -311,7 +311,7 @@ def filterProviders(providers, item, cfgData, dataCache): | |||
311 | def filterProvidersRunTime(providers, item, cfgData, dataCache): | 311 | def filterProvidersRunTime(providers, item, cfgData, dataCache): |
312 | """ | 312 | """ |
313 | Take a list of providers and filter/reorder according to the | 313 | Take a list of providers and filter/reorder according to the |
314 | environment variables and previous build results | 314 | environment variables |
315 | Takes a "runtime" target item | 315 | Takes a "runtime" target item |
316 | """ | 316 | """ |
317 | 317 | ||