diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-28 21:45:54 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-28 21:45:54 (GMT) |
commit | a7f7366abdff30b8891a2d4c94e33f4e4760c42b (patch) | |
tree | 2728b2942d3a7a8bbd62aa13c0a490a8aa9ec5b3 /Source/cmUnixMakefileGenerator.cxx | |
parent | 850d74f67f44514ab9eaa078bc44a43987e3a3fa (diff) | |
download | CMake-a7f7366abdff30b8891a2d4c94e33f4e4760c42b.zip CMake-a7f7366abdff30b8891a2d4c94e33f4e4760c42b.tar.gz CMake-a7f7366abdff30b8891a2d4c94e33f4e4760c42b.tar.bz2 |
ENH: various fixes to allow bootstrap on sunos with CC
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 d007868..dc7993a 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -501,7 +501,7 @@ void cmUnixMakefileGenerator::OutputTargets(std::ostream& fout) fout << "#\n"; fout << m_LibraryOutputPath << "lib" << l->first << ".a: ${" << l->first << "_SRC_OBJS} \n"; - fout << "\t${CMAKE_AR} cr " + fout << "\t${CMAKE_AR} " << m_LibraryOutputPath << "lib" << l->first << ".a ${" << l->first << "_SRC_OBJS} \n"; fout << "\t${CMAKE_RANLIB} " |