From 2f720fb30e71ff10b0eb7351dad4c49ff375aebf Mon Sep 17 00:00:00 2001 From: theraven Date: Thu, 27 Jun 2013 11:30:41 +0000 Subject: [PATCH] Respect CMAKE_INSTALL_LIBDIR when determining library install paths. Patch by Lubos Dolezel! --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 71a560fd..56cd2474 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -294,7 +294,7 @@ endif () set(GNUSTEP_INSTALL_TYPE ${DEFAULT_INSTALL_TYPE} CACHE STRING "GNUstep installation type. Options are NONE, SYSTEM, NETWORK or LOCAL.") if (${GNUSTEP_INSTALL_TYPE} STREQUAL "NONE") - SET(LIB_INSTALL_PATH "lib" CACHE STRING + SET(LIB_INSTALL_PATH "${CMAKE_INSTALL_LIBDIR}" CACHE STRING "Subdirectory of the root prefix where libraries are installed.") SET(HEADER_INSTALL_PATH "include") else ()