summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@theqtcompany.com>2015-12-01 13:54:04 +0100
committerEdward Welbourne <edward.welbourne@theqtcompany.com>2015-12-02 15:14:26 +0000
commitefcc2d492561a1eb55db3f76124e24ad4ae7d447 (patch)
treedf84bbd581988458388f9bb5c593a3060a7708de /tools
parentbc914c234cb1f87ad72cb8cb943af81a88934ca7 (diff)
Break line and end in full-stop in configure.exe failure message.
When configure.exe doesn't know what -platform to use, its message is poorly-formatted (and unhelpful). This at least fixes the formatting. Change-Id: I0f9fa3106a86606255ba05e80730031f1548faec Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 3767640536..9422b9fe07 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1416,8 +1416,8 @@ void Configure::parseCmdLine()
cout << "QMAKESPEC environment variable is set to \"" << dictionary["QMAKESPEC"]
<< "\" which is not a supported platform" << endl;
} else { // was autodetected from environment
- cout << "Unable to detect the platform from environment. Use -platform command line"
- "argument or set the QMAKESPEC environment variable and run configure again" << endl;
+ cout << "Unable to detect the platform from environment. Use -platform command line" << endl
+ << "argument or set the QMAKESPEC environment variable and run configure again." << endl;
}
cout << "See the README file for a list of supported operating systems and compilers." << endl;
} else {