(self, path)
| 1011 | raise Exception('Executable file not found. Tried:\n' + '\n'.join(paths)) |
| 1012 | |
| 1013 | def resolve_userland(self, path): |
| 1014 | return self.resolve_executable( |
| 1015 | path, |
| 1016 | self.env['userland_source_dir'], |
| 1017 | self.env['userland_build_dir'], |
| 1018 | self.env['userland_build_ext'], |
| 1019 | ) |
| 1020 | |
| 1021 | def setup(self): |
| 1022 | ''' |
nothing calls this directly
no test coverage detected