From 1804d868bbd4c3597ea8d7d491d1c785199d5dc7 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 22 Dec 2023 13:19:28 +0100 Subject: [PATCH] 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 --- cmake/QtProcessConfigureArgs.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/QtProcessConfigureArgs.cmake b/cmake/QtProcessConfigureArgs.cmake index ccae19e5921..9c86d08c258 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}'.")