aboutsummaryrefslogtreecommitdiffstats
path: root/sources
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-15 13:41:34 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-02-15 15:48:24 +0000
commit6510dce065ccdbf1f62a79f8c50351f339a351d7 (patch)
tree3fa0e48f725adcb1a7b14500e4323fd9718fa895 /sources
parent0025446bc890b1935c7628b0468f6b1de49dc27c (diff)
Fix the example_gallery quiet option for quiet mode
Use the right quotes. Amends 9f8fc934818c3ae7473fe6258056bc7c7bf9f718. Task-number: PYSIDE-1490 Change-Id: I9e5c999747ab96056180692c34c129e399915e56 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 6f6f9495a8f18408fbc233c1d889549fbb8567f9) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'sources')
-rw-r--r--sources/pyside6/doc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/doc/CMakeLists.txt b/sources/pyside6/doc/CMakeLists.txt
index a6191683b..b61bdf797 100644
--- a/sources/pyside6/doc/CMakeLists.txt
+++ b/sources/pyside6/doc/CMakeLists.txt
@@ -26,7 +26,7 @@ endif()
# Generate example gallery
message(STATUS "Generating example gallery")
if (QUIET_BUILD)
- set (EXAMPLE_TOOL_OPTIONS '-q')
+ set (EXAMPLE_TOOL_OPTIONS "-q")
endif()
set(EXAMPLE_TOOL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../tools/example_gallery/main.py")
execute_process(COMMAND ${PYTHON_EXECUTABLE} ${EXAMPLE_TOOL_DIR} ${EXAMPLE_TOOL_OPTIONS}