We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0fdaf commit 3a246c7Copy full SHA for 3a246c7
cpython-unix/build.py
@@ -574,12 +574,16 @@ def build_cpython(
574
# TODO copy latest pip/setuptools.
575
576
with tempfile.NamedTemporaryFile("wb") as fh:
577
+ # In case default file masks cause wonkiness.
578
+ os.chmod(fh.name, 0o644)
579
+
580
fh.write(setup_local_content)
581
fh.flush()
582
583
build_env.copy_file(fh.name, dest_name="Setup.local")
584
585
586
587
fh.write(extra_make_content)
588
589
0 commit comments