summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2023-12-22 13:19:28 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2024-01-09 18:54:47 +0100
commit1804d868bbd4c3597ea8d7d491d1c785199d5dc7 (patch)
treeae10bc7fea694f56ad659285fb1c78f1528f426f
parentefcfda3d84d0fb7e4b3270a7d96b3b95db8d522c (diff)
configure: Remove debug message
When using configure arguments like -system-libpng then we saw lines like this in configure's output: opt: libpng val: system This is a left-over debug message which went unnoticed for a long time. This patch removes it. Change-Id: Ic655fbc9aedb887743206fdfb344bf2f5eca7a12 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
-rw-r--r--cmake/QtProcessConfigureArgs.cmake1
1 files changed, 0 insertions, 1 deletions
diff --git a/cmake/QtProcessConfigureArgs.cmake b/cmake/QtProcessConfigureArgs.cmake
index ccae19e592..9c86d08c25 100644
--- a/cmake/QtProcessConfigureArgs.cmake
+++ b/cmake/QtProcessConfigureArgs.cmake
@@ -684,7 +684,6 @@ while(1)
if(NOT DEFINED commandline_option_${opt} AND opt MATCHES "(qt|system)-(.*)")
set(opt "${CMAKE_MATCH_2}")
set(val "${CMAKE_MATCH_1}")
- message("opt: ${opt} val: ${val}")
endif()
else()
qtConfAddError("Invalid command line parameter '${arg}'.")