summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Build
diff options
context:
space:
mode:
authorJeffery To <jeffery.to@gmail.com>2023-06-07 06:59:56 (GMT)
committerGitHub <noreply@github.com>2023-06-07 06:59:56 (GMT)
commit990cb3676c2edb7e5787372d6cbe360a73367f4c (patch)
treead81309511fa7022916b28a9c491454da6515783 /Misc/NEWS.d/next/Build
parent81c81328a4fa13fead6f8cc9053a1a32a62a0279 (diff)
downloadcpython-990cb3676c2edb7e5787372d6cbe360a73367f4c.zip
cpython-990cb3676c2edb7e5787372d6cbe360a73367f4c.tar.gz
cpython-990cb3676c2edb7e5787372d6cbe360a73367f4c.tar.bz2
gh-104692: Include commoninstall as a prerequisite for bininstall (#104693)
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. Co-authored-by: Zachary Ware <zachary.ware@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-rw-r--r--Misc/NEWS.d/next/Build/2023-05-20-23-49-30.gh-issue-104692.s5UIu5.rst6
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.