From 22d69a944a7e0b24791bce494d9683429cdf5289 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 3 May 2004 12:34:25 -0400 Subject: BUG: fix to make spaces in paths work for jump over with borland and nmake on second build --- Source/cmLocalUnixMakefileGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit v0.12