diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-30 15:41:08 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-30 15:41:08 (GMT) |
commit | 906ebb5547e93a173017a987d5bceb417503b640 (patch) | |
tree | 179f5f32b6fa01225b8423f49bc561e6b6ab8291 /Source | |
parent | 195e2c64497ee7b5f08cad25655505451b8b5e16 (diff) | |
download | CMake-906ebb5547e93a173017a987d5bceb417503b640.zip CMake-906ebb5547e93a173017a987d5bceb417503b640.tar.gz CMake-906ebb5547e93a173017a987d5bceb417503b640.tar.bz2 |
fix warning
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 33842ec..52bd79a 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -48,10 +48,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "cmGeneratedFileStream.h" cmUnixMakefileGenerator::cmUnixMakefileGenerator() - :m_ObjectFileExtension(".o"), + :m_SharedLibraryExtension("$(SHLIB_SUFFIX)"), + m_ObjectFileExtension(".o"), m_ExecutableExtension(""), m_StaticLibraryExtension(".a"), - m_SharedLibraryExtension("$(SHLIB_SUFFIX)"), m_LibraryPrefix("lib") { m_CacheOnly = false; |