From ae3489b9be6581833a5815d624c2fb303737e704 Mon Sep 17 00:00:00 2001 From: "Malte S. Stretz" Date: Mon, 22 Nov 2021 09:06:10 +0100 Subject: config_kde: Use kf5-config instead of qtpaths qtpaths is a developer tool which is not guaranteed to exist on all KDE installations (notably KDE neon). If it doesn't exist, the cache isn't used at all. The equivalent to kde4-config is kf5-config, let's use that. --- libproxy/modules/config_kde.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libproxy/modules/config_kde.cpp b/libproxy/modules/config_kde.cpp index b5954a9..3068a59 100644 --- a/libproxy/modules/config_kde.cpp +++ b/libproxy/modules/config_kde.cpp @@ -46,7 +46,7 @@ public: command_output("kreadconfig5 --key nonexistant"); try { - parse_dir_list(command_output("qtpaths --paths GenericConfigLocation")); + parse_dir_list(command_output("kf5-config --path config")); } catch(...) {} -- cgit v1.2.1