diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-05 16:18:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-05 16:18:15 (GMT) |
commit | 34853be45a238b700201a8ff0245bfb124e6aded (patch) | |
tree | c7b2bd8a7e33c0f4bccedd25fc6eac6394601e9e /Source/cmGlobalBorlandMakefileGenerator.cxx | |
parent | 251032b1906f1d9a311449182184db72de6bccae (diff) | |
download | CMake-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.cxx | 7 |
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"); |