From 5a082f2c24ff70be00ea598e290dce2e4ac18078 Mon Sep 17 00:00:00 2001 From: Baptiste DURAND Date: Tue, 3 Sep 2013 15:57:04 +0200 Subject: [PATCH] On Yocto libraries are stored in /usr/lib even if the arch is x64. Adapt librairies path in Tizen Common Cmake module --- meta-wrt-tizen/recipes-devtools/cmake/files/TizenCommon.cmake | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta-wrt-tizen/recipes-devtools/cmake/files/TizenCommon.cmake b/meta-wrt-tizen/recipes-devtools/cmake/files/TizenCommon.cmake index 11bd64f..4e853dd 100644 --- a/meta-wrt-tizen/recipes-devtools/cmake/files/TizenCommon.cmake +++ b/meta-wrt-tizen/recipes-devtools/cmake/files/TizenCommon.cmake @@ -3,10 +3,7 @@ IF ( DEFINED LIB ) SET ( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${LIB}" ) ELSE ( DEFINED LIB ) - IF (CMAKE_SIZEOF_VOID_P MATCHES "8") - SET( LIB_SUFFIX "64" ) - ENDIF(CMAKE_SIZEOF_VOID_P MATCHES "8") - SET ( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" ) + SET ( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib" ) ENDIF ( DEFINED LIB ) MESSAGE(STATUS "Libraries will be installed in ${LIB_INSTALL_DIR}" ) -- 2.7.4