(context)
| 189 | |
| 190 | |
| 191 | def configure_build_python(context): |
| 192 | if context.clean: |
| 193 | clean("build") |
| 194 | os.chdir(subdir("build", create=True)) |
| 195 | |
| 196 | command = [relpath(PYTHON_DIR / "configure")] |
| 197 | if context.args: |
| 198 | command.extend(context.args) |
| 199 | run(command) |
| 200 | |
| 201 | |
| 202 | def make_build_python(context): |