summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalBorlandMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-11-05 16:18:15 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-11-05 16:18:15 (GMT)
commit34853be45a238b700201a8ff0245bfb124e6aded (patch)
treec7b2bd8a7e33c0f4bccedd25fc6eac6394601e9e /Source/cmGlobalBorlandMakefileGenerator.cxx
parent251032b1906f1d9a311449182184db72de6bccae (diff)
downloadCMake-34853be45a238b700201a8ff0245bfb124e6aded.zip
CMake-34853be45a238b700201a8ff0245bfb124e6aded.tar.gz
CMake-34853be45a238b700201a8ff0245bfb124e6aded.tar.bz2
BUG: fix for bug 346, borland should now support dash in the path
Diffstat (limited to 'Source/cmGlobalBorlandMakefileGenerator.cxx')
-rw-r--r--Source/cmGlobalBorlandMakefileGenerator.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmGlobalBorlandMakefileGenerator.cxx b/Source/cmGlobalBorlandMakefileGenerator.cxx
index 6857219..ca99c92 100644
--- a/Source/cmGlobalBorlandMakefileGenerator.cxx
+++ b/Source/cmGlobalBorlandMakefileGenerator.cxx
@@ -35,13 +35,6 @@ void cmGlobalBorlandMakefileGenerator::EnableLanguage(const char* l,
return;
}
std::string outdir = m_CMakeInstance->GetStartOutputDirectory();
- if(outdir.find('-') != std::string::npos)
- {
- std::string message = "The Borland command line tools do not support path names that have - in them. Please re-name your output directory and use _ instead of -.";
- message += "\nYour path currently is: ";
- message += outdir;
- cmSystemTools::Error(message.c_str());
- }
mf->AddDefinition("BORLAND", "1");
mf->AddDefinition("CMAKE_GENERATOR_CC", "bcc32");
mf->AddDefinition("CMAKE_GENERATOR_CXX", "bcc32");