From 3c93f7dd4feade9a71189bde94cade06172fb5e8 Mon Sep 17 00:00:00 2001 From: Niclas Rosenvik Date: Tue, 16 Mar 2021 20:03:00 +0100 Subject: [PATCH] Fix configure build due to use of qt_set01 in configure.cmake MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The change "Enable X11 on other platforms than just Linux" uses qt_set01 in a configure.cmake file but does not add it to the stubs list in QtProcessConfigureArgs.cmake thus breaking builds based on configure. Add a defstub with qt_set01 to fix this. Change-Id: Ia3e0ec61df5228f88f77f631968f6f96d567ec8e Reviewed-by: Tor Arne Vestbø --- cmake/QtProcessConfigureArgs.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/QtProcessConfigureArgs.cmake b/cmake/QtProcessConfigureArgs.cmake index 1f0007ac45a..08b1351fcf6 100644 --- a/cmake/QtProcessConfigureArgs.cmake +++ b/cmake/QtProcessConfigureArgs.cmake @@ -131,6 +131,7 @@ defstub(qt_feature_definition) defstub(qt_find_package) defstub(set_package_properties) defstub(qt_qml_find_python) +defstub(qt_set01) ####################################################################################################