https://github.com/python/cpython/commit/87b712228efa87245a8b64092262d9e3a0193985
commit: 87b712228efa87245a8b64092262d9e3a0193985
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2024-12-01T09:24:18Z
summary:

[3.12] gh-127356: Fix prepend doctrees directory for gettext target (GH-127357) 
(#127471)

Co-authored-by: Rafael Fontenelle <[email protected]>

files:
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index 22e43ee3e542ee..4a704ad58b33d3 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: override SPHINXOPTS := -d build/doctrees-gettext $(SPHINXOPTS)
 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]

Reply via email to