summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorSebastian Koslowski <sebastian.koslowski@gmail.com>2017-11-08 20:52:14 +0100
committerSebastian Koslowski <sebastian.koslowski@gmail.com>2017-11-08 20:54:16 +0100
commit7beebab1e7957f53bdea88dd60eb2bbe75c54013 (patch)
treebff71781d0f02c5f70dd1bab7a42e6d3b4a76513 /cmake
parentfbc1627340ea3ed4bedc3424d5a2ec3736e66b4b (diff)
grc: hide ImportError for dep checks in cmake
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/GrPython.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/Modules/GrPython.cmake b/cmake/Modules/GrPython.cmake
index fdbd21d840..49a351d3a7 100644
--- a/cmake/Modules/GrPython.cmake
+++ b/cmake/Modules/GrPython.cmake
@@ -63,6 +63,7 @@ set(QA_PYTHON_EXECUTABLE ${QA_PYTHON_EXECUTABLE} CACHE FILEPATH "python interpre
macro(GR_PYTHON_CHECK_MODULE_RAW desc python_code have)
execute_process(
COMMAND ${PYTHON_EXECUTABLE} -c "${python_code}"
+ OUTPUT_QUIET ERROR_QUIET
RESULT_VARIABLE return_code
)
if(return_code EQUAL 0)