Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2016-04-15 17:56:54 +0300
committerMarkus Goetz <markus@woboq.com>2016-04-15 17:58:58 +0300
commit6a9655aab6b0b06dc4085dcb01ff7ef4131100ee (patch)
tree3fd2742d24bf710be1ce5f9037e46bd3d6a58610 /shell_integration
parentc4577cb2a1eee71501eeab19adab860b201b17a9 (diff)
OS X: Fix overlay installation on El Capitan #4650
The sleep is somehow needed, probably for pkg to rebuild its DB? The case fix fixes a warning but did not fix the issue itself.
Diffstat (limited to 'shell_integration')
-rw-r--r--shell_integration/MacOSX/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell_integration/MacOSX/CMakeLists.txt b/shell_integration/MacOSX/CMakeLists.txt
index 83181d316..7461d6df7 100644
--- a/shell_integration/MacOSX/CMakeLists.txt
+++ b/shell_integration/MacOSX/CMakeLists.txt
@@ -25,10 +25,13 @@ add_custom_target( mac_overlayplugin ALL
add_dependencies(mac_overlayplugin ${APPLICATION_EXECUTABLE}) # for the ownCloud.icns to be generated
+# legacy
INSTALL( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Release/SyncStateFinder.osax/Contents
DESTINATION ${CMAKE_INSTALL_PREFIX}/Library/ScriptingAdditions/SyncStateFinder.osax/ )
+
+# >= 10.10.x
INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Release/FinderSyncExt.appex
- DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Plugins
+ DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/PlugIns
USE_SOURCE_PERMISSIONS)
endif(APPLE)