QtUtilities.py eric7

Mon, 16 Oct 2023 19:24:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 16 Oct 2023 19:24:11 +0200
branch
eric7
changeset 10249
77b4c59c76d9
parent 10248
981456110843
child 10250
09b42174e077

QtUtilities.py
- Extended the search for the 'libexec' directory in the 'getQtBinariesPath()' function.

src/eric7/SystemUtilities/QtUtilities.py file | annotate | diff | comparison | revisions
--- a/src/eric7/SystemUtilities/QtUtilities.py	Sat Oct 14 18:10:36 2023 +0200
+++ b/src/eric7/SystemUtilities/QtUtilities.py	Mon Oct 16 19:24:11 2023 +0200
@@ -79,7 +79,9 @@
         if libexec:
             binPath = os.path.join(qtToolsDir, "..", "libexec")
             if not os.path.exists(binPath):
-                binPath = qtToolsDir
+                binPath = os.path.join(qtToolsDir, "libexec")
+                if not os.path.exists(binPath):
+                    binPath = qtToolsDir
         else:
             binPath = Preferences.getQt("QtToolsDir")
         if not os.path.exists(binPath):

eric ide

mercurial