Git commit 0b9774dd4d89a2bc39c600d7759c2c1a9d57da5e by Davide Gianforte. Committed on 31/03/2015 at 23:13. Pushed by gengisdave into branch 'plasma'. small fix for VFS added the else condition for systems without ACL (e.g. Kubuntu) M +2 -0 krusader/VFS/CMakeLists.txt http://commits.kde.org/krusader/0b9774dd4d89a2bc39c600d7759c2c1a9d57da5e diff --git a/krusader/VFS/CMakeLists.txt b/krusader/VFS/CMakeLists.txt index 7597db7..e44a721 100644 --- a/krusader/VFS/CMakeLists.txt +++ b/krusader/VFS/CMakeLists.txt @@ -21,4 +21,6 @@ add_library(VFS STATIC ${VFS_SRCS}) = if(ACL_FOUND) target_link_libraries(VFS KF5::Archive KF5::KIOCore KF5::KDELibs4Suppo= rt KF5::Wallet ${ACL_LIBS}) +else(ACL_NOT_FOUND) + target_link_libraries(VFS KF5::Archive KF5::KIOCore KF5::KDELibs4Suppo= rt KF5::Wallet) endif(ACL_FOUND)