Skip to content

Commit

Permalink
Fix pkgconfig file's libdir value
Browse files Browse the repository at this point in the history
And make a similar fix for includedir while we're here.

Bug: https://bugs.gentoo.org/729642
  • Loading branch information
mattst88 committed Mar 19, 2021
1 parent 90db730 commit a6de6b0
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 a6de6b0

Please sign in to comment.