BUG: fix to make spaces in paths work for jump over with borland and nmake on second build
This commit is contained in:
parent
50a0936ffc
commit
22d69a944a
|
@ -1796,7 +1796,7 @@ void cmLocalUnixMakefileGenerator::OutputBuildTargetInDirWindows(std::ostream& f
|
||||||
}
|
}
|
||||||
jumpBack = this->ConvertToOutputForExisting(jumpBack.c_str());
|
jumpBack = this->ConvertToOutputForExisting(jumpBack.c_str());
|
||||||
std::string wpath = this->ConvertToOutputForExisting(path);
|
std::string wpath = this->ConvertToOutputForExisting(path);
|
||||||
std::string wfullpath = this->ConvertToOutputForExisting(fullpath);
|
std::string wfullpath = this->ConvertToRelativeOutputPath(fullpath);
|
||||||
fout << wfullpath
|
fout << wfullpath
|
||||||
<< ":\n\tcd " << wpath << "\n"
|
<< ":\n\tcd " << wpath << "\n"
|
||||||
<< "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.depends\n"
|
<< "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.depends\n"
|
||||||
|
|
Loading…
Reference in New Issue