Skip to content

Commit

Permalink
Issue #27896: Allow passing sphinx options to Doc/Makefile
Browse files Browse the repository at this point in the history
Patch written by Julien Palard.
  • Loading branch information
vstinner committed Oct 16, 2016
1 parent 4186222 commit 57acb82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57acb82

Please sign in to comment.