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:
parent
c42a969b2f
commit
f5bdf75830
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user