summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Fontenelle <rffontenelle@users.noreply.github.com>2024-12-01 09:15:44 (GMT)
committerGitHub <noreply@github.com>2024-12-01 09:15:44 (GMT)
commita880358af03d9cab37f7db04385c5a97051b03b6 (patch)
tree912645a45d1b65ca52a9e82d904d1c440bae3cc9
parent11c01092d5fa8f02c867a7f1f3c135ce63db4838 (diff)
downloadcpython-a880358af03d9cab37f7db04385c5a97051b03b6.zip
cpython-a880358af03d9cab37f7db04385c5a97051b03b6.tar.gz
cpython-a880358af03d9cab37f7db04385c5a97051b03b6.tar.bz2
gh-127356: Fix prepend doctrees directory for gettext target (#127357)
-rw-r--r--Doc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 22e43ee..4a704ad 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