From 029f5fc3cb0aa917a94809212a440ba0f2014090 Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Tue, 17 Aug 2021 21:44:54 +0200 Subject: [PATCH] Fix FindKIOExtras.cmake Check for the existence of the plugin rather than the protocol file, which got removed --- cmake/FindKIOExtras.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindKIOExtras.cmake b/cmake/FindKIOExtras.cmake index 7b0d72625..bc9529ee8 100644 --- a/cmake/FindKIOExtras.cmake +++ b/cmake/FindKIOExtras.cmake @@ -1,4 +1,4 @@ -find_path(KIOExtras_PATH thumbnail.protocol PATHS ${KDE_INSTALL_FULL_KSERVICES5DIR}) +find_path(KIOExtras_PATH thumbnail.so PATHS ${KDE_INSTALL_FULL_PLUGINDIR}/kf5/kio/) if (KIOExtras_PATH) set(KIOExtras_FOUND TRUE)