(self, arch, *libs)
| 669 | rmdir(self.ctx.python_installs_dir) |
| 670 | |
| 671 | def install_libs(self, arch, *libs): |
| 672 | libs_dir = self.ctx.get_libs_dir(arch.arch) |
| 673 | if not libs: |
| 674 | warning('install_libs called with no libraries to install!') |
| 675 | return |
| 676 | args = libs + (libs_dir,) |
| 677 | shprint(sh.cp, *args) |
| 678 | |
| 679 | def has_libs(self, arch, *libs): |
| 680 | return all(map(lambda lib: self.ctx.has_lib(arch.arch, lib), libs)) |
no test coverage detected