Skip to content

Commit

Permalink
Update PyInstaller .spec files to use hook
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowUnicorn7297 committed Mar 13, 2024
1 parent 308093e commit 2c42bdf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tools/apk-patcher/apk-patcher_macos.spec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ datas = [
a = Analysis(
['apk-patcher.pyw'],
pathex=[],
binaries=[('../../env/lib/python3.11/site-packages/glfw/x11/libglfw.so', '.')],
binaries=[],
datas=datas,
hiddenimports=[],
hookspath=[],
hookspath=['.'],
hooksconfig={},
runtime_hooks=[],
excludes=[],
Expand Down
4 changes: 2 additions & 2 deletions tools/apk-patcher/apk-patcher_ubuntu.spec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ datas = [
a = Analysis(
['apk-patcher.pyw'],
pathex=[],
binaries=[('../../env/lib/python3.11/site-packages/glfw/x11/libglfw.so', '.')],
binaries=[],
datas=datas,
hiddenimports=[],
hookspath=[],
hookspath=['.'],
hooksconfig={},
runtime_hooks=[],
excludes=[],
Expand Down
4 changes: 2 additions & 2 deletions tools/apk-patcher/apk-patcher_windows.spec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ datas = [
a = Analysis(
['apk-patcher.pyw'],
pathex=[],
binaries=[('../../env/Lib/site-packages/glfw/glfw3.dll', '.')],
binaries=[],
datas=datas,
hiddenimports=[],
hookspath=[],
hookspath=['.'],
hooksconfig={},
runtime_hooks=[],
excludes=[],
Expand Down

0 comments on commit 2c42bdf

Please sign in to comment.