(self, bootstrap)
| 423 | ', '.join(arch.arch for arch in self.archs))) |
| 424 | |
| 425 | def prepare_bootstrap(self, bootstrap): |
| 426 | if not bootstrap: |
| 427 | raise TypeError("None is not allowed for bootstrap") |
| 428 | bootstrap.ctx = self |
| 429 | self.bootstrap = bootstrap |
| 430 | self.bootstrap.prepare_build_dir() |
| 431 | self.bootstrap_build_dir = self.bootstrap.build_dir |
| 432 | |
| 433 | def prepare_dist(self): |
| 434 | self.bootstrap.prepare_dist_dir() |
no test coverage detected