summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-10-22 16:23:25 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-10-22 18:06:19 +0200
commit9a7de1abf52d4011d13472be8b87c0aefd5cc211 (patch)
tree1e87662f664cbd722c9f159085d8004366b52d7b /cmake
parent9ff9a54bfbe77aa0f22da46ad55e1d39b2a49e22 (diff)
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 <cristian.adam@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/QtBuildInformation.cmake2
1 files changed, 1 insertions, 1 deletions
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}")