https://github.com/python/cpython/commit/1503835b1b1b6cdd17158c42ff0d893eb64f9ca0 commit: 1503835b1b1b6cdd17158c42ff0d893eb64f9ca0 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s <[email protected]> date: 2024-09-23T15:49:53-07:00 summary:
[3.13] Fix doctrees directory for the gettext builder (GH-122997) (#124338) 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 c061e5308576b2..b1c856c136170b 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]
