From 6099e02691c19f9deb47f307ec4f629848dbf2a3 Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Wed, 18 Jun 2014 16:28:30 +0200 Subject: [PATCH] fix install path for phonon platform plugin ${PLUGIN_INSTALL_DIR} already contains /plugins so appending it again leads to a double subdir REVIEW: 118662 --- phonon/platform_kde/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phonon/platform_kde/CMakeLists.txt b/phonon/platform_kde/CMakeLists.txt index a42c213ad..f14488b3f 100644 --- a/phonon/platform_kde/CMakeLists.txt +++ b/phonon/platform_kde/CMakeLists.txt @@ -18,6 +18,6 @@ if(NOT WIN32) ) endif() -install(TARGETS kde DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/phonon_platform) +install(TARGETS kde DESTINATION ${PLUGIN_INSTALL_DIR}/phonon_platform) install(FILES phonon.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR}) install(FILES phononbackend.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR})