diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-10 08:41:47 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-10 08:41:47 -0400 |
commit | 708828dc3761cc009f5ea479e6012ca1193e7e60 (patch) | |
tree | f813ac450a1d47b8b824ee35e35fa0937c6774bc /Source/cmLocalVisualStudio6Generator.cxx | |
parent | 8b88391daa911db4829e45217e4d73c5d7df44c0 (diff) | |
download | cmake-708828dc3761cc009f5ea479e6012ca1193e7e60.tar.gz |
ENH: removed old convert calls
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index ae19cc78c8..f463717d7c 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -172,11 +172,12 @@ void cmLocalVisualStudio6Generator::AddDSPBuildRule() std::string args; args = "-H"; args += - this->ConvertToRelativeOutputPath(m_Makefile->GetHomeDirectory()); + this->Convert(m_Makefile->GetHomeDirectory(),START_OUTPUT, SHELL, true); commandLine.push_back(args); args = "-B"; args += - this->ConvertToRelativeOutputPath(m_Makefile->GetHomeOutputDirectory()); + this->Convert(m_Makefile->GetHomeOutputDirectory(), + START_OUTPUT, SHELL, true); commandLine.push_back(args); std::string configFile = |