Skip to content

Commit

Permalink
Temporarily fix Qt5 plugin issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Clary authored and Ryan Clary committed Feb 6, 2022
1 parent e3caccc commit 5329c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py2app/recipes/qt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def check(cmd, mf):


qtdir = QLibraryInfo.location(QLibraryInfo.LibrariesPath)
if qtdir != os.path.dirname(PyQt5.__file__):
if os.path.dirname(PyQt5.__file__) not in qtdir:
# Qt5's prefix is not the PyQt5 package, which means
# the "packages" directive below won't include everything
# needed, and in particular won't include the plugins
Expand Down

0 comments on commit 5329c85

Please sign in to comment.