We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cmark 0.28.1 now installs libcmark.a into ${CMAKE_INSTALL_PREFIX}/include which seems like an odd choice to me. Is this intentional?
libcmark.a
${CMAKE_INSTALL_PREFIX}/include
Ran into this while trying to update the FreeBSD port. I currently patch it like this:
--- src/CMakeLists.txt.bak 2017-10-11 06:13:55.000000000 +0200 +++ src/CMakeLists.txt 2017-10-12 12:33:38.920390000 +0200 @@ -130,7 +130,7 @@ EXPORT cmark RUNTIME DESTINATION bin LIBRARY DESTINATION ${libdir} - ARCHIVE DESTINATION include + ARCHIVE DESTINATION ${libdir} ) if(CMARK_SHARED OR CMARK_STATIC)
The text was updated successfully, but these errors were encountered:
a54e12c
Sorry, something went wrong.
Thank you for fixing this so quickly and putting out a new release.
I just committed the update to the FreeBSD ports tree: https://svnweb.freebsd.org/changeset/ports/451911
Fixed regression in install dest for static library.
20eb5b2
Due to a mistake, 0.28.1 installed libcmark.a into include/. Closes #238.
No branches or pull requests
cmark 0.28.1 now installs
libcmark.a
into${CMAKE_INSTALL_PREFIX}/include
which seems like an odd choice to me. Is this intentional?Ran into this while trying to update the FreeBSD port. I currently patch it like this:
The text was updated successfully, but these errors were encountered: