aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2023-12-08 16:22:45 +0100
committerGitHub <noreply@github.com>2023-12-08 16:22:45 +0100
commita6eacaa3e339ad6434f0765c0baddfb7ff126d9e (patch)
tree8f4b61544e09a3b611924ed66d0d746b00554852
parenta1851fe3f70789cb9d3275a5fe5b18a5e926b221 (diff)
parent421be80782cf571cf9aaa81af29bdb0a38caef13 (diff)
downloadbrotli-a6eacaa3e339ad6434f0765c0baddfb7ff126d9e.zip
brotli-a6eacaa3e339ad6434f0765c0baddfb7ff126d9e.tar.gz
brotli-a6eacaa3e339ad6434f0765c0baddfb7ff126d9e.tar.bz2
Merge branch 'master' into dependabot/github_actions/ossf/scorecard-action-2.3.1
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c5449a9..70d0f6c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -114,7 +114,7 @@ elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
add_definitions(-DOS_MACOSX)
set(CMAKE_MACOS_RPATH TRUE)
- set(CMAKE_INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib")
+ set(CMAKE_INSTALL_NAME_DIR "${CMAKE_INSTALL_FULL_LIBDIR}")
endif()
if(BROTLI_EMSCRIPTEN)
@@ -362,11 +362,11 @@ endif() # BROTLI_BUNDLED_MODE
if (BROTLI_BUILD_TOOLS)
install(FILES "docs/brotli.1"
- DESTINATION "${SHARE_INSTALL_PREFIX}/man/man1")
+ DESTINATION "${CMAKE_INSTALL_FULL_MANDIR}/man1")
endif()
install(FILES docs/constants.h.3 docs/decode.h.3 docs/encode.h.3 docs/types.h.3
- DESTINATION "${SHARE_INSTALL_PREFIX}/man/man3")
+ DESTINATION "${CMAKE_INSTALL_FULL_MANDIR}/man3")
if (ENABLE_COVERAGE STREQUAL "yes")
setup_target_for_coverage(coverage test coverage)