Git commit 45689713cbcf17887ff12a34744c4b591641ae4f by Casian Andrei. Committed on 02/07/2014 at 09:02. Pushed by casianandrei into branch 'five'. Fix pkgconfig file install directory The LIB_INSTALL_DIR variable does not appear to be valid anymore, use CMAKE_INSTALL_LIBDIR instead. M +1 -1 CMakeLists.txt http://commits.kde.org/phonon/45689713cbcf17887ff12a34744c4b591641ae4f diff --git a/CMakeLists.txt b/CMakeLists.txt index 208e6a0..9367f24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,7 +99,7 @@ install( = if(NOT WIN32) configure_file(phonon.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/${PHONON_LI= B_SONAME}.pc @ONLY) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PHONON_LIB_SONAME}.pc DEST= INATION ${LIB_INSTALL_DIR}/pkgconfig) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PHONON_LIB_SONAME}.pc DEST= INATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) endif(NOT WIN32) = ################################### QT PRI ###############################= ######