Do not assume /usr/lib library installation.

Current `pkgconfig` configuration file installation path and its
contents assume libraries are installed under `/usr/lib` and this is not
always the case, for instance `/usr/lib64` is quite possible under
Gentoo Linux.

Thus use the `CMAKE_INSTALL_LIBDIR` variable instead of a hardcoded
`lib`.
This commit is contained in:
Patrice Levesque 2026-03-05 22:42:33 -05:00
parent 30c5194c96
commit 370847d4cb
No known key found for this signature in database
GPG Key ID: F16C6DC6A4078AFB
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ configure_file(cmake/whisper.pc.in
@ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/whisper.pc"
DESTINATION lib/pkgconfig)
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
#
# programs, examples and tests

View File

@ -1,6 +1,6 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
includedir=${prefix}/include
Name: whisper