()
| 503 | |
| 504 | |
| 505 | def configure_make(): |
| 506 | if not os.path.isfile('Makefile'): |
| 507 | log.info('Running ./configure') |
| 508 | subprocess.check_call([ |
| 509 | './configure', '--config-cache', '--quiet', |
| 510 | '--with-pydebug' |
| 511 | ]) |
| 512 | |
| 513 | log.info('Running make') |
| 514 | subprocess.check_call(['make', '--quiet']) |
| 515 | |
| 516 | |
| 517 | def main(): |