The libs dir for a given arch.
(self, arch)
| 440 | return self.get_python_install_dir(arch.arch) |
| 441 | |
| 442 | def get_libs_dir(self, arch): |
| 443 | '''The libs dir for a given arch.''' |
| 444 | ensure_dir(join(self.libs_dir, arch)) |
| 445 | return join(self.libs_dir, arch) |
| 446 | |
| 447 | def has_lib(self, arch, lib): |
| 448 | return exists(join(self.get_libs_dir(arch), lib)) |