diff options
author | Nick Brown <nickbroon@gmail.com> | 2021-09-29 16:13:23 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-09-30 10:12:47 +0000 |
commit | 679211766be044b0d9e26bff94e242100e2fbaf8 (patch) | |
tree | 0c8ed986b17fb0d67d59c37003f84772cddd31f0 /src | |
parent | 33b3092d7025f332021c1188826271e87eee2d82 (diff) |
build: consistent use of CMAKE_INSTALL_LIBDIR
Set the RPATH to based on CMAKE_INSTALL_LIBDIR so that libraries are
correctly found.
Type: make
Change-Id: I82d649345edea2c5d3f6b3f43e3e5869b9e580a7
Signed-off-by: Nick Brown <nickbroon@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 415a9c9c4e9..7bb5caad734 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -152,7 +152,7 @@ endif() ############################################################################## option(VPP_SET_RPATH "Set rpath for resulting binaries and libraries." ON) if(VPP_SET_RPATH) - set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") + set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") endif() set(CMAKE_INSTALL_MESSAGE NEVER) |