https://github.com/python/cpython/commit/533b06c1184b032a90b3fb11497bd80b91f85485 commit: 533b06c1184b032a90b3fb11497bd80b91f85485 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: AA-Turner <[email protected]> date: 2024-09-23T14:37:10Z summary:
[3.12] Fix doctrees directory for the gettext builder (GH-122997) (#124339) Fix doctrees directory for the gettext builder (GH-122997) (cherry picked from commit 315a933a5b3ae4379077096b6852f85a81a7d75f) Co-authored-by: Rafael Fontenelle <[email protected]> files: M Doc/Makefile diff --git a/Doc/Makefile b/Doc/Makefile index 3d39766b3cb08f..fc0d1e4d9a2a55 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -144,7 +144,7 @@ pydoc-topics: build .PHONY: gettext gettext: BUILDER = gettext -gettext: SPHINXOPTS += '-d build/doctrees-gettext' +gettext: SPHINXOPTS += -d build/doctrees-gettext gettext: build .PHONY: htmlview _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
