From 2a122e4bab7dac49973fb2584b28d3a93d420956 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 11 Mar 2024 19:39:46 +0100 Subject: [PATCH] CMakeLists.txt: fix absolute path --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 44df711a..fcb9790d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -822,10 +822,10 @@ if(JAS_ENABLE_SHARED AND NOT JAS_PACKAGING) # We only want to include directories in the installed rpath if they # will not be considered implicitly. list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES - "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" jas_is_system_dir) + "${CMAKE_INSTALL_FULL_LIBDIR}" jas_is_system_dir) if(jas_is_system_dir EQUAL -1) set(CMAKE_INSTALL_RPATH - "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") + "${CMAKE_INSTALL_FULL_LIBDIR}") endif() endif()