8000 DOC: Fix setting make.bat options on Windows · matplotlib/matplotlib@6840108 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6840108

Browse files
story645QuLogic
authored andcommitted
DOC: Fix setting make.bat options on Windows
figured this made more sense than opening a new PR for the docs
1 parent 86f361c commit 6840108

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

doc/devel/documenting_mpl.rst

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,6 @@ it, use
8282
8383
make SPHINXOPTS= html
8484
85-
On Windows the arguments must be at the end of the statement:
86-
87-
.. code-block:: bat
88-
89-
make html SPHINXOPTS=
90-
9185
You can use the ``O`` variable to set additional options:
9286

9387
* ``make O=-j4 html`` runs a parallel build with 4 processes.
@@ -97,12 +91,11 @@ You can use the ``O`` variable to set additional options:
9791
Multiple options can be combined using e.g. ``make O='-j4 -Dplot_gallery=0'
9892
html``.
9993

100-
On Windows, either put the arguments at the end of the statement or set the options as environment variables, e.g.:
94+
On Windows, set the options as environment variables, e.g.:
10195

10296
.. code-block:: bat
10397
104-
set O=-W --keep-going -j4
105-
make html
98+
set SPHINXOPTS= & set O=-j4 -Dplot_gallery=0 & make html
10699
107100
Showing locally built docs
108101
--------------------------

0 commit comments

Comments
 (0)
0