From b6edd2cb3da2e536d0f2f710e8dbf98089e08207 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Mon, 17 May 2010 21:19:08 +0000 Subject: [PATCH] Adds LIB_SUFFIX to all CMakeLists install "lib" targets, so that 64 bits libraries gets installed in "lib64" instead of "lib". buildCoriolis.py sets automatically LIB_SUFFIX for cmake. coriolis2.spec modificated to uses lib64 on 64 bits. --- crlcore/src/ccore/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crlcore/src/ccore/CMakeLists.txt b/crlcore/src/ccore/CMakeLists.txt index 7abacff5..5ca6f12e 100644 --- a/crlcore/src/ccore/CMakeLists.txt +++ b/crlcore/src/ccore/CMakeLists.txt @@ -237,4 +237,4 @@ ${AGDS_LIBRARY} ${CIF_LIBRARY} ) - install ( TARGETS crlcore DESTINATION lib ) + install ( TARGETS crlcore DESTINATION lib${LIB_SUFFIX} )