From efcc2d492561a1eb55db3f76124e24ad4ae7d447 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Tue, 1 Dec 2015 13:54:04 +0100 Subject: [PATCH] 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 --- tools/configure/configureapp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 37676405366..9422b9fe07f 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 {