https://github.com/python/cpython/commit/a880358af03d9cab37f7db04385c5a97051b03b6
commit: a880358af03d9cab37f7db04385c5a97051b03b6
branch: main
author: Rafael Fontenelle <[email protected]>
committer: hugovk <[email protected]>
date: 2024-12-01T11:15:44+02:00
summary:

gh-127356: Fix prepend doctrees directory for gettext target (#127357)

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