Fix for bug #9965 -i was not passed to -E commands.
This commit is contained in:
parent
254d267e36
commit
5d62c50732
|
@ -423,7 +423,7 @@ int do_cmake(int ac, char** av)
|
|||
std::vector<std::string> args;
|
||||
for(int i =0; i < ac; ++i)
|
||||
{
|
||||
if(strcmp(av[i], "-i") == 0)
|
||||
if(!command && strcmp(av[i], "-i") == 0)
|
||||
{
|
||||
wiz = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue