From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 1 Dec 2024 09:24:18 +0000 (+0100) Subject: [3.12] gh-127356: Fix prepend doctrees directory for gettext target (GH-127357) ... X-Git-Tag: v3.12.8~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87b712228efa87245a8b64092262d9e3a0193985;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-127356: Fix prepend doctrees directory for gettext target (GH-127357) (#127471) Co-authored-by: Rafael Fontenelle --- diff --git a/Doc/Makefile b/Doc/Makefile index 22e43ee3e542..4a704ad58b33 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