From ba9ac03b0bd46085f22765b0d7639a885bfe95ca Mon Sep 17 00:00:00 2001 From: Mackie Messer Date: Fri, 4 Oct 2013 12:58:39 +0200 Subject: [PATCH] Put plugins in PlugIns, not Plugins on Mac Requires 770539f0a5e34ac25ea6992e2205142ec3d65691 on csync --- src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 26cb9862bf..e765e1b2dc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -327,9 +327,9 @@ else() #FIXME: hardcoded path if ( EXISTS ${CSYNC_BINARY_DIR}/modules/ocsync_owncloud.so ) - install(FILES ${CSYNC_BINARY_DIR}/modules/ocsync_owncloud.so DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Plugins) + install(FILES ${CSYNC_BINARY_DIR}/modules/ocsync_owncloud.so DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/PlugIns) else() - install(FILES /usr/local/lib/ocsync-0/ocsync_owncloud.so DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Plugins) + install(FILES /usr/local/lib/ocsync-0/ocsync_owncloud.so DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/PlugIns) endif() set (QM_DIR ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources/Translations) @@ -361,7 +361,7 @@ install(TARGETS ${APPLICATION_EXECUTABLE} # if building a bundle or not and the install_qt4_executable needs to be called afterwards if(BUILD_OWNCLOUD_OSX_BUNDLE) install_qt4_executable(${OWNCLOUD_OSX_BUNDLE} "qsqlite" - "${OWNCLOUD_OSX_BUNDLE}/Contents/Plugins/ocsync_owncloud.so" + "${OWNCLOUD_OSX_BUNDLE}/Contents/PlugIns/ocsync_owncloud.so" ${dirs}) endif()