From 6c7c2b481d300cdf3050c04cac11917b45032cee Mon Sep 17 00:00:00 2001 From: Russel Waters Date: Tue, 16 Jun 2020 15:30:16 -0400 Subject: [PATCH] correct rpath for libs in tar.bz2 archive (#2819) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 01a76f29..aa7dc3bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ endif() if (APPLE) set (CMAKE_INSTALL_RPATH "@executable_path/../Frameworks;@executable_path/../boost/lib") else() - set (CMAKE_INSTALL_RPATH "$ORIGIN/lib") + set (CMAKE_INSTALL_RPATH "$ORIGIN/../lib") endif() # Create all libraries and executables in the root binary dir