Makefile: don't run sphinx in quiet mode (#1611)

Rationale:

* Sometimes Sphinx is slow and it's nice to have progress indicators while it's
  running

* If there's a warning or error, it may be possible to get relevant context
This commit is contained in:
Dimitri Merejkowsky 2021-04-30 17:08:43 +02:00 committed by GitHub
parent acd1900b62
commit 26361e7fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ all: ensure_prerequisites
mkdir -p locales/$(LANGUAGE)/LC_MESSAGES/
$(CP_CMD) -u --parents *.po */*.po locales/$(LANGUAGE)/LC_MESSAGES/
$(MAKE) -C $(CPYTHON_PATH)/Doc/ \
SPHINXOPTS='-qW -j$(JOBS) \
SPHINXOPTS='-W -j$(JOBS) \
-D locale_dirs=$(abspath locales) \
-D language=$(LANGUAGE) \
-D gettext_compact=0 \