Skip to content

Commit

Permalink
CMakeLists.txt: fix absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank committed Mar 11, 2024
1 parent 7359c0d commit 2a122e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 2a122e4

Please sign in to comment.