https://github.com/python/cpython/commit/315a933a5b3ae4379077096b6852f85a81a7d75f commit: 315a933a5b3ae4379077096b6852f85a81a7d75f branch: main author: Rafael Fontenelle <[email protected]> committer: AA-Turner <[email protected]> date: 2024-08-14T11:38:29+01:00 summary:
Fix doctrees directory for the gettext builder (#122997) files: M Doc/Makefile diff --git a/Doc/Makefile b/Doc/Makefile index b2ee3fe7d28ed0..9ddf97fd775dec 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]
