Fixed lib64 auto-detection (again)

Reverting the "LIB_SUFFIX" change.
Assuming recent change was unintentional (otherwise let me know James! :) ).
This commit is contained in:
ThorstenB
2011-11-30 19:50:09 +01:00
parent fee652d54a
commit 6780a0c8d4
2 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ macro(simgear_component_common name includePath sourcesList sources headers)
set(libName "sg${name}")
add_library(${libName} STATIC ${sources} ${headers})
install (TARGETS ${libName} ARCHIVE DESTINATION lib${LIB_SUFFIX})
install (TARGETS ${libName} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
endif()
install (FILES ${headers} DESTINATION include/simgear/${includePath})