summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-05-03 16:34:25 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-05-03 16:34:25 (GMT)
commit22d69a944a7e0b24791bce494d9683429cdf5289 (patch)
tree4848287153fa18451e8c949d27a85fff72407c50 /Source/cmLocalUnixMakefileGenerator.cxx
parent50a0936ffcf75491eb37fe7314dd4b0167de3de5 (diff)
downloadCMake-22d69a944a7e0b24791bce494d9683429cdf5289.zip
CMake-22d69a944a7e0b24791bce494d9683429cdf5289.tar.gz
CMake-22d69a944a7e0b24791bce494d9683429cdf5289.tar.bz2
BUG: fix to make spaces in paths work for jump over with borland and nmake on second build
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx
index 1f0575d..34de3ca 100644
--- a/Source/cmLocalUnixMakefileGenerator.cxx
+++ b/Source/cmLocalUnixMakefileGenerator.cxx
@@ -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"