summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJack DeVries <58614260+jdevries3133@users.noreply.github.com>2021-07-28 13:13:28 (GMT)
committerGitHub <noreply@github.com>2021-07-28 13:13:28 (GMT)
commitd22c876d5ac5fa464337d2e82654b8d87a83cb1b (patch)
tree0c4517dc35f1876d426a5cb7acbb5965a00c747f /Misc/NEWS.d
parentddf8ae31a0f371eff2db14c7f7a45976b86d56ea (diff)
downloadcpython-d22c876d5ac5fa464337d2e82654b8d87a83cb1b.zip
cpython-d22c876d5ac5fa464337d2e82654b8d87a83cb1b.tar.gz
cpython-d22c876d5ac5fa464337d2e82654b8d87a83cb1b.tar.bz2
bpo-44756: in ./Doc, `make build` depends on `make html` (#27403)
- venv rule is now conditional, and only does anything if $VENVDIR does not exist - add rule "clean-venv"
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Tools-Demos/2021-07-28-00-51-55.bpo-44756.pvAajB.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2021-07-28-00-51-55.bpo-44756.pvAajB.rst b/Misc/NEWS.d/next/Tools-Demos/2021-07-28-00-51-55.bpo-44756.pvAajB.rst
new file mode 100644
index 0000000..4734f1f
--- /dev/null
+++ b/Misc/NEWS.d/next/Tools-Demos/2021-07-28-00-51-55.bpo-44756.pvAajB.rst
@@ -0,0 +1,6 @@
+In the Makefile for documentation (:file:`Doc/Makefile`), the ``build`` rule
+is dependent on the ``venv`` rule. Therefore, ``html``, ``latex``, and other
+build-dependent rules are also now dependent on ``venv``. The ``venv`` rule
+only performs an action if ``$(VENVDIR)`` does not exist.
+:file:`Doc/README.rst` was updated; most users now only need to type ``make
+html``.