https://github.com/python/cpython/commit/3b31f8c7e8ac6513e96b6bec1e5a787b590a5acf
commit: 3b31f8c7e8ac6513e96b6bec1e5a787b590a5acf
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2024-12-01T09:21:34Z
summary:

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

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