Lynn Oliver píše v Čt 05. 04. 2012 v 09:34 -0700:
> Same result with latest dev version of Pyinstaller.
Probably last think to try. Please try to do the following change and
let me know if it works for you:
diff --git a/PyInstaller/depend/dylib.py b/PyInstaller/depend/dylib.py
index 19ce8dd..ccccc06 100644
--- a/PyInstaller/depend/dylib.py
+++ b/PyInstaller/depend/dylib.py
@@ -202,7 +202,7 @@ def mac_set_relative_dylib_deps(libname):
if not util.in_system_path(pth):
# Use relative path to dependend dynamic libraries bases on
# location of the executable.
- return os.path.join('@executable_path',
os.path.basename(pth))
+ return os.path.join('@loader_path', os.path.basename(pth))
# Rewrite mach headers with @executable_path.
dll = MachO(libname)
--
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.