From b076138e7d60089588d6add5f4784859494ecdf0 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 8 May 2002 08:46:55 -0400 Subject: [PATCH] BUG: short path does not work on bcc32 --- Source/cmBorlandMakefileGenerator.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx index 32e76d926..c73d27b3f 100644 --- a/Source/cmBorlandMakefileGenerator.cxx +++ b/Source/cmBorlandMakefileGenerator.cxx @@ -106,11 +106,11 @@ void cmBorlandMakefileGenerator::OutputMakeVariables(std::ostream& fout) fout << "RM = " << this->ConvertToOutputPath(ccommand.c_str()) << " remove -f\n"; std::string ccompiler = m_Makefile->GetDefinition("CMAKE_C_COMPILER"); fout << "CMAKE_C_COMPILER = " - << this->ShortPath(ccompiler.c_str()) + << this->ConvertToOutputPath(ccompiler.c_str()) << "\n"; std::string cxxcompiler = m_Makefile->GetDefinition("CMAKE_CXX_COMPILER"); fout << "CMAKE_CXX_COMPILER = " - << this->ShortPath(cxxcompiler.c_str()) + << this->ConvertToOutputPath(cxxcompiler.c_str()) << "\n"; if(m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))