From 7a23f16bbfca8a567c7c0a0e054df84d75c8ac8e Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Mon, 25 Mar 2019 17:16:18 +0100 Subject: [PATCH] install pkg-config file into libdir Most pkgconfig files contain a Libs: variable, which is either /usr/lib or /usr/lib64. If a 32bit and a 64bit variant of fmt libraries is installed, the last one wins. As a result compiling for the other bitsize will fail. Instead of sharedir use libdir as install target. Fixes commit 9d0c9c4bb145a286f725cd38c90331eee7addc7f Fixes commit 287342dab10a5a96479b3e21cd11ce671ed8125c Signed-off-by: Olaf Hering --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e24afd11534..80d75e728581 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -206,7 +206,7 @@ if (FMT_INSTALL) set(FMT_INC_DIR ${CMAKE_INSTALL_INCLUDEDIR}/fmt CACHE STRING "Installation directory for include files, relative to ${CMAKE_INSTALL_PREFIX}.") - set(FMT_PKGCONFIG_DIR "share/pkgconfig" CACHE PATH + set(FMT_PKGCONFIG_DIR ${CMAKE_INSTALL_LIBDIR}/pkgconfig CACHE PATH "Installation directory for pkgconfig (.pc) files, relative to ${CMAKE_INSTALL_PREFIX}.") # Generate the version, config and target files into the build directory.