BUG: fix #8203: codeblocks + mingw doesn't like the extra quotes around the
path to the makefile if it contains spaces, under Linux it works with spaces Alex
This commit is contained in:
parent
82e7e7fb7d
commit
fcc97a4f3c
@ -418,6 +418,13 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand(
|
|||||||
command += "" ";
|
command += "" ";
|
||||||
command += target;
|
command += target;
|
||||||
}
|
}
|
||||||
|
else if (strcmp(this->GlobalGenerator->GetName(), "MinGW Makefiles")==0)
|
||||||
|
{
|
||||||
|
command += " -f ";
|
||||||
|
command += makefile;
|
||||||
|
command += " ";
|
||||||
|
command += target;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
command += " -f "";
|
command += " -f "";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user