Skip to content

Commit

Permalink
Allow BUILDDIR to be set from environment
Browse files Browse the repository at this point in the history
No reason not to allow this.
  • Loading branch information
victorlin committed Oct 17, 2024
1 parent 23e1a19 commit b83c073
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
SHELL := bash -euo pipefail

# You can set these variables from the command line, and also
# from the environment for the first two.
# from the environment for the first three.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
BUILDDIR ?= _build
SOURCEDIR = .
BUILDDIR = _build

# Require stricter builds with
# -n: warn on missing references
Expand Down
4 changes: 3 additions & 1 deletion doc/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
if "%BUILDDIR%" == "" (
set BUILDDIR=_build
)
set SOURCEDIR=.
set BUILDDIR=_build

if "%1" == "" goto help

Expand Down

0 comments on commit b83c073

Please sign in to comment.