mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
[PR #1367] cmake: fix man page install directories #1977
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/google/brotli/pull/1367
State: closed
Merged: No
To not use a prefix-less absolute path with
cmake --install <d> --prefix <path>.According to CMake docs about
_FULL_variables:"These variables shouldn't be used in install() commands as they do
not work with the cmake --install command's --prefix option, or with
the cpack installer generators."
Ref: https://cmake.org/cmake/help/v4.2/module/GNUInstallDirs.html
Follow-up to
cff5803216#1084