From 5164cf903e401a3422a27cad6774fa566feaaa2b Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Wed, 30 Dec 2020 12:36:52 +0000 Subject: Revert "CMake: Fix missing report entries" This reverts commit 642ee46f98c6b3cd98a323f7dc5cac3a738b066c. Reason for revert: Issue when command_count is actually 0 Change-Id: I1b2603f25b56e3bd50cfc22a08925930ad231498 Reviewed-by: Cristian Adam (cherry picked from commit 34c3b12fd58fc1833abd20eb7b222cb6561e1b03) Reviewed-by: Qt Cherry-pick Bot --- cmake/QtBuildInformation.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cmake') diff --git a/cmake/QtBuildInformation.cmake b/cmake/QtBuildInformation.cmake index 15b1a7926a..ff9cc9d866 100644 --- a/cmake/QtBuildInformation.cmake +++ b/cmake/QtBuildInformation.cmake @@ -99,8 +99,7 @@ function(qt_configure_eval_commands) endif() set(command_index 0) - # LESS_EQUAL is used because command_count is not actual count, but last added command index - while(command_index LESS_EQUAL command_count) + while(command_index LESS command_count) get_property(command_args GLOBAL PROPERTY qt_configure_command_${command_index}) if(NOT command_args) message(FATAL_ERROR -- cgit v1.2.3