Skip to content

Commit

Permalink
Merge pull request #326 from mattst88/fix-libdir
Browse files Browse the repository at this point in the history
Fix pkgconfig file's libdir value
  • Loading branch information
brarcher authored Mar 20, 2021
2 parents e877cbf + 991c45b commit 9e714b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@ if(NOT THIS_IS_SUBPROJECT)
set(prefix_save "${PREFIX}")
set(prefix "${CMAKE_INSTALL_PREFIX}")
set(exec_prefix "\${prefix}")
set(libdir "\${exec_prefix}/lib")
set(includedir "\${prefix}/include")
set(libdir ${CMAKE_INSTALL_FULL_LIBDIR})
set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
set(VERSION "${PROJECT_VERSION}")

if (HAVE_SUBUNIT)
Expand Down

0 comments on commit 9e714b7

Please sign in to comment.