From: Victor Stinner Date: Sun, 16 Oct 2016 17:14:23 +0000 (+0200) Subject: Issue #27896: Allow passing sphinx options to Doc/Makefile X-Git-Tag: v3.7.0a1~2220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=57acb82d275ace9d9d854b156611e641f68e9e7c;p=thirdparty%2FPython%2Fcpython.git Issue #27896: Allow passing sphinx options to Doc/Makefile Patch written by Julien Palard. --- diff --git a/Doc/Makefile b/Doc/Makefile index 202e8e1de3ae..91f937f98583 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -162,12 +162,12 @@ serve: # for development releases: always build autobuild-dev: - make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1' + make dist SPHINXOPTS='$(SPHINXOPTS) -A daily=1 -A versionswitcher=1' -make suspicious # for quick rebuilds (HTML only) autobuild-dev-html: - make html SPHINXOPTS='-A daily=1 -A versionswitcher=1' + make html SPHINXOPTS='$(SPHINXOPTS) -A daily=1 -A versionswitcher=1' # for stable releases: only build if not in pre-release stage (alpha, beta) # release candidate downloads are okay, since the stable tree can be in that stage