Lynn Oliver píše v Pá 06. 04. 2012 v 14:28 -0700:
> On my system it it called with binaries =
> [('Tk', '/Library/Frameworks/Tk.framework/Versions/8.5/Tk'), ('Tcl',
> '/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl')]
One idea: we could determine the TCL_root and TK_root just as dirname
from these binaries like:
for lib, fnm in binaries:
if lib == 'Tcl':
TCL_root = os.path.dirname(fnm)
if lib == 'Tk':
TK_root = os.path.dirname(fnm)
I think this might work in most cases.
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.