diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-07-05 10:51:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 10:51:16 (GMT) |
commit | 2edec6ad9f6cbce217427e2352e577a7a83cd774 (patch) | |
tree | 5a350dd9a3862636b77ad323a13b78f712a20a65 /Misc | |
parent | 637102980d12e5ff99b69ddffd5f05ecfe0adeb6 (diff) | |
download | cpython-2edec6ad9f6cbce217427e2352e577a7a83cd774.zip cpython-2edec6ad9f6cbce217427e2352e577a7a83cd774.tar.gz cpython-2edec6ad9f6cbce217427e2352e577a7a83cd774.tar.bz2 |
[3.12] gh-104692: Include commoninstall as a prerequisite for bininstall (GH-104693) (#105428)
This ensures that `commoninstall` is completed before `bininstall` is
started when parallel builds are used (`make -j install`), and so the
`python3` symlink is only installed after all standard library modules
are installed.
(cherry picked from commit 990cb3676c2edb7e5787372d6cbe360a73367f4c)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2023-05-20-23-49-30.gh-issue-104692.s5UIu5.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2023-05-20-23-49-30.gh-issue-104692.s5UIu5.rst b/Misc/NEWS.d/next/Build/2023-05-20-23-49-30.gh-issue-104692.s5UIu5.rst new file mode 100644 index 0000000..2936990 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2023-05-20-23-49-30.gh-issue-104692.s5UIu5.rst @@ -0,0 +1,6 @@ +Include ``commoninstall`` as a prerequisite for ``bininstall`` + +This ensures that ``commoninstall`` is completed before ``bininstall`` +is started when parallel builds are used (``make -j install``), and so +the ``python3`` symlink is only installed after all standard library +modules are installed. |