Skip to content

Commit 57acb82

Browse files
committed
Issue #27896: Allow passing sphinx options to Doc/Makefile
Patch written by Julien Palard.
1 parent 4186222 commit 57acb82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,12 @@ serve:
162162

163163
# for development releases: always build
164164
autobuild-dev:
165-
make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1'
165+
make dist SPHINXOPTS='$(SPHINXOPTS) -A daily=1 -A versionswitcher=1'
166166
-make suspicious
167167

168168
# for quick rebuilds (HTML only)
169169
autobuild-dev-html:
170-
make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'
170+
make html SPHINXOPTS='$(SPHINXOPTS) -A daily=1 -A versionswitcher=1'
171171

172172
# for stable releases: only build if not in pre-release stage (alpha, beta)
173173
# release candidate downloads are okay, since the stable tree can be in that stage

0 commit comments

Comments
 (0)