[email protected] píše v So 09. 02. 2013 v 06:25 -0800: > class MacExcludeList(object): > def search(self, libname): > if "/Tcl" in libname or "/Tk" in libname: > return False > return util.in_system_path(libname) > > > So it seems it needs to package the Tcl/Tk that is pre-installed on > Mac OS X, but the original MacExcludeList object will prevent this by > default... > Any ideas why this is happening?
The assumption is that stuff in /System or in /usr/lib is supposed to be stable and available on every osx. However, that seems not working everywhere. We would have to define list of libraries that should be handled - Tcl and Tk and some pyside libraries are first candidates. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
