From 65ba81e466b027e80726c999abd610c812c5b91e Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 30 Oct 2022 22:31:04 +0300 Subject: [PATCH] change the isDebianQt method --- src/Deploy/src/deploycore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Deploy/src/deploycore.cpp b/src/Deploy/src/deploycore.cpp index d84ad66..273f20a 100644 --- a/src/Deploy/src/deploycore.cpp +++ b/src/Deploy/src/deploycore.cpp @@ -1106,7 +1106,7 @@ int DeployCore::qtVersionToString(QtMajorVersion qtVersion) { } bool DeployCore::isDebianQt(const QString &qtRoot) { - return qtRoot.contains("/usr/lib/qt") || qtRoot.contains("/usr/bin"); + return qtRoot.contains("/usr/lib/") || qtRoot.contains("/usr/bin"); } QString DeployCore::systemLibsFolderName() {