From fba863a87e8cbbe8365b6da9de39194c7ed08b2c Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Tue, 18 Jan 2022 16:18:06 +0100 Subject: [PATCH] Fix minor grammar error in configure's closing message Minor glitch in wording, but it's been bugging me for months. The meaning of "try to remove [a file]" implicitly says you might be unable to do so; while the attempt might help with your situation, the experiment might merely be a diagnostic, e.g. because if you can't remove the file, that would imply things that would help you solve your problem. For contrast, "try removing [a file]" says removal might actually solve the problem for which this action is proposed as a fix. Change-Id: Ic995cfdef1523094bb368dcda8bd0d2bbd2e9434 Reviewed-by: Alexandru Croitor --- cmake/QtBuildInformation.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/QtBuildInformation.cmake b/cmake/QtBuildInformation.cmake index a3adf810947..0104978c404 100644 --- a/cmake/QtBuildInformation.cmake +++ b/cmake/QtBuildInformation.cmake @@ -48,7 +48,7 @@ function(qt_print_build_instructions) endif() message("\nTo configure and build other Qt modules, you can use the following convenience script: ${local_install_prefix}/${INSTALL_BINDIR}/${configure_module_command}") - message("\nIf reconfiguration fails for some reason, try to remove 'CMakeCache.txt' \ + message("\nIf reconfiguration fails for some reason, try removing 'CMakeCache.txt' \ from the build directory \n") endfunction()