Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect way of turning CMAKE_INSTALL_LIBDIR absolute (#1261)
${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR} is not guaranteed to make sense because CMAKE_INSTALL_LIBDIR may be specified as an absolute path, in which case this concatenation is nonsense. Use CMAKE_INSTALL_FULL_LIBDIR instead, which will use CMAKE_INSTALL_LIBDIR if it's already absolute, or concatenate it onto CMAKE_INSTALL_PREFIX if it isn't.
- Loading branch information