Mon, 16 Oct 2023 19:24:11 +0200
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):