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.6.0b3~109^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f2e377beb4731c770f1383f2bae92fe1b8cc2e2;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 878685dd7afb..10c3288c590f 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