From d1c2b27278c23b3a00475aaf2528006337d22f90 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 24 Jun 2021 13:49:23 +0200 Subject: build_scripts: Pass --quiet to build_rst_docs Otherwise, the log messages from the example gallery clutter the sphinx warnings from the shiboken manual. Pick-to: 6.1 Change-Id: I1a8e3b685a4bfb830baea3a2221fc7980fee24e1 Reviewed-by: Christian Tismer --- build_scripts/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_scripts/main.py b/build_scripts/main.py index ed1c42f32..6f80d8dc4 100644 --- a/build_scripts/main.py +++ b/build_scripts/main.py @@ -1197,6 +1197,8 @@ class PysideRstDocs(Command, DistUtilsCommandMixin): "-DDOC_OUTPUT_FORMAT=html", "-DFULLDOCSBUILD=0", ] + if OPTION["QUIET"]: + cmake_cmd.append('-DQUIET_BUILD=1') if run_process(cmake_cmd) != 0: raise DistutilsSetupError(f"Error running CMake for {self.doc_dir}") -- cgit v1.2.3