forked from pyinstaller/pyinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bootloader: splash: use absolute library paths in onedir mode
In onedir mode, the Tcl and Tk shared library need to be loaded using an absolute path instead of relative one (i.e., just library basename). While the latter seems to work on Windows, it does not work on Linux, where we end up trying to load the library from system-wide library directories (and fail if system has no Tcl/Tk installed).
- Loading branch information
Showing
2 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
(Linux) Fix the splash screen in onedir build loading system-installed | ||
Tcl/Tk shared libraries instead of bundled ones (and failing if the | ||
system has no Tcl/Tk installed). |