diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 23:07:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 23:07:27 (GMT) |
commit | e7bb895afda0ccc5711906873040459942137dce (patch) | |
tree | 571e06a2919cb2922ca46ab0f64f5e969efe0ab5 /Source/cmUnixMakefileGenerator.cxx | |
parent | b29e3f11cbdfa0dffb40eb394468b448066762e6 (diff) | |
download | CMake-e7bb895afda0ccc5711906873040459942137dce.zip CMake-e7bb895afda0ccc5711906873040459942137dce.tar.gz CMake-e7bb895afda0ccc5711906873040459942137dce.tar.bz2 |
ENH: borland generator 2 is working more or less
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index e59b8b4..1a28b71 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -367,7 +367,7 @@ void cmUnixMakefileGenerator::OutputTargetRules(std::ostream& fout) std::string outExt(this->GetOutputExtension(i->GetSourceExtension().c_str())); if(outExt.size()) { - fout << "\\\n" << i->GetSourceName() + fout << "\\\n" << this->ConvertToNativePath(i->GetSourceName().c_str()) << outExt.c_str() << " "; } } |