Skip to content

Commit

Permalink
Ubuntu deployment: Change path for manually installed glfw
Browse files Browse the repository at this point in the history
  • Loading branch information
papr committed Oct 24, 2019
1 parent f718176 commit 98a179d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deployment/deploy_capture/bundle.spec
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ elif platform.system() == "Linux":
binaries,
a.zipfiles,
a.datas,
[("libglfw.so", "/usr/lib/x86_64-linux-gnu/libglfw.so", "BINARY")],
[("libglfw.so", "/usr/local/lib/libglfw.so", "BINARY")],
[("libGLEW.so", "/usr/lib/x86_64-linux-gnu/libGLEW.so", "BINARY")],
[("pyglui/OpenSans-Regular.ttf", ui.get_opensans_font_path(), "DATA")],
[("pyglui/Roboto-Regular.ttf", ui.get_roboto_font_path(), "DATA")],
Expand Down
2 changes: 1 addition & 1 deletion deployment/deploy_player/bundle.spec
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ elif platform.system() == "Linux":
binaries,
a.zipfiles,
a.datas,
[("libglfw.so", "/usr/lib/x86_64-linux-gnu/libglfw.so", "BINARY")],
[("libglfw.so", "/usr/local/lib/libglfw.so", "BINARY")],
[("libGLEW.so", "/usr/lib/x86_64-linux-gnu/libGLEW.so", "BINARY")],
[("pyglui/OpenSans-Regular.ttf", ui.get_opensans_font_path(), "DATA")],
[("pyglui/Roboto-Regular.ttf", ui.get_roboto_font_path(), "DATA")],
Expand Down
2 changes: 1 addition & 1 deletion deployment/deploy_service/bundle.spec
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ elif platform.system() == "Linux":
binaries,
a.zipfiles,
a.datas,
[("libglfw.so", "/usr/lib/x86_64-linux-gnu/libglfw.so", "BINARY")],
[("libglfw.so", "/usr/local/lib/libglfw.so", "BINARY")],
[("libGLEW.so", "/usr/lib/x86_64-linux-gnu/libGLEW.so", "BINARY")],
[("pyglui/OpenSans-Regular.ttf", ui.get_opensans_font_path(), "DATA")],
[("pyglui/Roboto-Regular.ttf", ui.get_roboto_font_path(), "DATA")],
Expand Down

0 comments on commit 98a179d

Please sign in to comment.