diff --git a/Makefile b/Makefile index 6baf33b32..9817feb15 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,8 @@ SPHINXBUILD = $(VENVDIR)/bin/sphinx-build # there are duplicate labels. These cause warnings, which prevent the # build from finishing. Turn off --fail-on-warning so we can see the # finished results. -#SPHINXOPTS = --fail-on-warning --keep-going -SPHINXOPTS = --keep-going +#SPHINXOPTS = --fail-on-warning +SPHINXOPTS = BUILDDIR = _build BUILDER = html JOBS = auto diff --git a/make.bat b/make.bat index b48678366..fec822e95 100644 --- a/make.bat +++ b/make.bat @@ -11,7 +11,7 @@ if "%PYTHON%" == "" ( ) set BUILDDIR=_build -set SPHINXOPTS=--fail-on-warning --keep-going +set SPHINXOPTS=--fail-on-warning set _ALL_SPHINX_OPTS=%SPHINXOPTS% if "%1" == "check" goto check diff --git a/make.ps1 b/make.ps1 index d6b5f3293..ffda67269 100644 --- a/make.ps1 +++ b/make.ps1 @@ -8,7 +8,7 @@ Set-StrictMode -Version 3.0 $ErrorActionPreference = "Stop" $BUILDDIR = "_build" -$SPHINXOPTS = "--fail-on-warning --keep-going" +$SPHINXOPTS = "--fail-on-warning" $_ALL_SPHINX_OPTS = $SPHINXOPTS $_PYTHON = $Env:PYTHON ?? "py -3"