diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-10-16 17:14:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-10-16 17:14:23 (GMT) |
commit | 57acb82d275ace9d9d854b156611e641f68e9e7c (patch) | |
tree | 47add286f5880462e75b2333286b554a39624ffd /Doc/Makefile | |
parent | 4186222e63bc98c1648fef1a11420a29335b199a (diff) | |
download | cpython-57acb82d275ace9d9d854b156611e641f68e9e7c.zip cpython-57acb82d275ace9d9d854b156611e641f68e9e7c.tar.gz cpython-57acb82d275ace9d9d854b156611e641f68e9e7c.tar.bz2 |
Issue #27896: Allow passing sphinx options to Doc/Makefile
Patch written by Julien Palard.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 202e8e1..91f937f 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 |