You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users may have customised their makefile to include additional steps while building the html, but these are then lost when using because instead of calling make html
it calls sphinx-build -b html "$doc_dir" "$tmp_dir" $INPUT_SPHINX_OPTIONS
Is there any reason not to call like this? make html BUILDDIR="$tmp_dir" SPHINXOPTS="$INPUT_SPHINX_OPTIONS"
which would, I think, achieve the same.
Users may have customised their makefile to include additional steps while building the html, but these are then lost when using because instead of calling
make html
it calls
sphinx-build -b html "$doc_dir" "$tmp_dir" $INPUT_SPHINX_OPTIONS
Is there any reason not to call like this?
make html BUILDDIR="$tmp_dir" SPHINXOPTS="$INPUT_SPHINX_OPTIONS"
which would, I think, achieve the same.
The only change later in main.sh would be
becomes
because make by default will add /html for that build
The text was updated successfully, but these errors were encountered: