aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2021-12-11 13:57:29 -0800
committerGerald Combs <gerald@wireshark.org>2021-12-11 13:57:29 -0800
commitb62197c283bb6fe653df153bbd97a5123f494c44 (patch)
tree629020faf76ef9aba74b699de86f404c54816f7a /cmake/modules
parent773420bad91ec17c29a42a0341162e3931818881 (diff)
CMake+GitLab CI: Reduce verbosity.
For various commands, make sure we show warnings and errors, but not other extraneous information such as filenames.
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/FindAsciidoctor.cmake1
-rw-r--r--cmake/modules/FindXSLTPROC.cmake2
2 files changed, 2 insertions, 1 deletions
diff --git a/cmake/modules/FindAsciidoctor.cmake b/cmake/modules/FindAsciidoctor.cmake
index 2f485e5547..f905aa26e0 100644
--- a/cmake/modules/FindAsciidoctor.cmake
+++ b/cmake/modules/FindAsciidoctor.cmake
@@ -41,6 +41,7 @@ if(ASCIIDOCTOR_EXECUTABLE)
# Doesn't work with AsciidoctorJ?
# --failure-level=WARN
# --trace
+ --quiet
--attribute build_dir=${CMAKE_CURRENT_BINARY_DIR}
--require ${CMAKE_SOURCE_DIR}/docbook/asciidoctor-macros/ws_utils.rb
--require ${CMAKE_SOURCE_DIR}/docbook/asciidoctor-macros/commaize-block.rb
diff --git a/cmake/modules/FindXSLTPROC.cmake b/cmake/modules/FindXSLTPROC.cmake
index f23082d646..b4f0ac857d 100644
--- a/cmake/modules/FindXSLTPROC.cmake
+++ b/cmake/modules/FindXSLTPROC.cmake
@@ -90,7 +90,7 @@ MACRO(XML2HTML _target_dep _dir_pfx _mode _dbk_source _gfx_sources)
IF(${_mode} STREQUAL "chunked")
SET(_basedir ${_dir_pfx}_html_chunked)
SET(_stylesheet "http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl")
- SET(_modeparams --stringparam chunker.output.encoding UTF-8)
+ SET(_modeparams --stringparam chunker.output.encoding UTF-8 --stringparam chunk.quietly 1)
ELSE() # single-page
SET(_basedir ${_dir_pfx}_html)
SET(_stylesheet custom_layer_single_html.xsl)