From 9a7de1abf52d4011d13472be8b87c0aefd5cc211 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Thu, 22 Oct 2020 16:23:25 +0200 Subject: CMake: Pad the configure summary string with one more dot This makes the diff-ing of the config summary between qmake and CMake builds correct. Change-Id: I720b69572c23afd78e6d0bea6cdf0740980c3b36 Reviewed-by: Cristian Adam --- cmake/QtBuildInformation.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake') diff --git a/cmake/QtBuildInformation.cmake b/cmake/QtBuildInformation.cmake index 9dc3461f5b..3079a96a9c 100644 --- a/cmake/QtBuildInformation.cmake +++ b/cmake/QtBuildInformation.cmake @@ -132,7 +132,7 @@ macro(qt_configure_add_report_padded label message) endmacro() function(qt_configure_get_padded_string label value out_var) - set(pad_string "........................................") + set(pad_string ".........................................") string(LENGTH "${label}" label_len) string(LENGTH "${pad_string}" pad_len) math(EXPR pad_len "${pad_len}-${label_len}") -- cgit v1.2.3