BUG: fix to make spaces in paths work for jump over with borland and nmake on second build

This commit is contained in:
Bill Hoffman 2004-05-03 12:34:25 -04:00
parent 50a0936ffc
commit 22d69a944a
1 changed files with 1 additions and 1 deletions

View File

@ -1796,7 +1796,7 @@ void cmLocalUnixMakefileGenerator::OutputBuildTargetInDirWindows(std::ostream& f
}
jumpBack = this->ConvertToOutputForExisting(jumpBack.c_str());
std::string wpath = this->ConvertToOutputForExisting(path);
std::string wfullpath = this->ConvertToOutputForExisting(fullpath);
std::string wfullpath = this->ConvertToRelativeOutputPath(fullpath);
fout << wfullpath
<< ":\n\tcd " << wpath << "\n"
<< "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.depends\n"