Skip to content

Commit abe69be

Browse files
Merge pull request #43 from diegoferigo/patch-1
Fix CMake call to add_install_rpath_support function.
2 parents 3e3091a + 58cdec0 commit abe69be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ endif()
105105

106106
# Enable RPATH support for installed binaries and libraries
107107
include(AddInstallRPATHSupport)
108-
add_install_rpath_support(BIN_DIRS "${CMAKE_INSTALL_FULL_LIBDIR}"
109-
LIB_DIRS "${CMAKE_INSTALL_FULL_BINDIR}"
108+
add_install_rpath_support(BIN_DIRS "${CMAKE_INSTALL_FULL_BINDIR}"
109+
LIB_DIRS "${CMAKE_INSTALL_FULL_LIBDIR}"
110110
INSTALL_NAME_DIR "${CMAKE_INSTALL_FULL_LIBDIR}"
111111
USE_LINK_PATH)
112112

0 commit comments

Comments
 (0)