(self, arch)
| 555 | info('{} has no {}, skipping'.format(self.name, prebuild)) |
| 556 | |
| 557 | def is_patched(self, arch): |
| 558 | build_dir = self.get_build_dir(arch.arch) |
| 559 | return exists(join(build_dir, '.patched')) |
| 560 | |
| 561 | def apply_patches(self, arch, build_dir=None): |
| 562 | '''Apply any patches for the Recipe. |
no test coverage detected