Don't use check as an identifier in the configure app.

Avoids conflict with macro on Mac OS.

Change-Id: I3426c2dc514240d80996d823b7a552c13a09f99e
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
Stephen Kelly 2012-01-09 19:03:48 +01:00 committed by Qt by Nokia
parent c42a969b2f
commit f5bdf75830

View File

@ -985,8 +985,8 @@ void Configure::parseCmdLine()
++i;
if (i == argCount)
break;
QFileInfo check(configCmdLine.at(i));
if (!check.isDir()) {
QFileInfo checkDirectory(configCmdLine.at(i));
if (!checkDirectory.isDir()) {
cout << "Argument passed to -L option is not a directory path. Did you mean the -l option?" << endl;
dictionary[ "DONE" ] = "error";
break;