From 26361e7fc68dc525ca7f37e3540aba08821c57f9 Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Fri, 30 Apr 2021 17:08:43 +0200 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e3202f58..5af992fe 100644 --- a/Makefile +++ b/Makefile @@ -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 \