diff options
Diffstat (limited to 'bitbake/lib/bb/cookerdata.py')
| -rw-r--r-- | bitbake/lib/bb/cookerdata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index 397b43dfa7..a961f36574 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
| @@ -258,12 +258,12 @@ class CookerDataBuilder(object): | |||
| 258 | self.data = self.basedata | 258 | self.data = self.basedata |
| 259 | self.mcdata = {} | 259 | self.mcdata = {} |
| 260 | 260 | ||
| 261 | def parseBaseConfiguration(self): | 261 | def parseBaseConfiguration(self, worker=False): |
| 262 | data_hash = hashlib.sha256() | 262 | data_hash = hashlib.sha256() |
| 263 | try: | 263 | try: |
| 264 | self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) | 264 | self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) |
| 265 | 265 | ||
| 266 | if self.data.getVar("BB_WORKERCONTEXT", False) is None: | 266 | if self.data.getVar("BB_WORKERCONTEXT", False) is None and not worker: |
| 267 | bb.fetch.fetcher_init(self.data) | 267 | bb.fetch.fetcher_init(self.data) |
| 268 | bb.parse.init_parser(self.data) | 268 | bb.parse.init_parser(self.data) |
| 269 | bb.codeparser.parser_cache_init(self.data) | 269 | bb.codeparser.parser_cache_init(self.data) |
