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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>2021-07-12 15:10:54 +0300
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>2021-07-12 15:10:54 +0300
commit7c68408ee1fdaf1eb8c78fec631f0d3596aff0f9 (patch)
tree3d6a8d98442c73c5ad43059a04130564b3860c8a /src/libsync
parentb7a37a526a46a9f516e30248a4eb944f703f4ed6 (diff)
only compile xattr virtual files backend for linux platform (not unices)
for a reason a mac os platform specific file is missing and before xattr plugin was compiled only for linux Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/vfs/xattr/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/vfs/xattr/CMakeLists.txt b/src/libsync/vfs/xattr/CMakeLists.txt
index 0eedd7da7..c96b01ccf 100644
--- a/src/libsync/vfs/xattr/CMakeLists.txt
+++ b/src/libsync/vfs/xattr/CMakeLists.txt
@@ -1,4 +1,4 @@
-if (UNIX)
+if (LINUX)
set(vfs_xattr_SRCS vfs_xattr.cpp)
if (APPLE)
set(vfs_xattr_SRCS ${vfs_xattr_SRCS} xattrwrapper_mac.cpp)