Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect way of turning CMAKE_INSTALL_LIBDIR absolute #1261

Merged
merged 1 commit into from
Jul 11, 2023

Commits on Jul 10, 2023

  1. Fix incorrect way of turning CMAKE_INSTALL_LIBDIR absolute

    ${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.
    OPNA2608 committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    03cd38d View commit details
    Browse the repository at this point in the history