On Oct 20, 9:43 pm, Martin Gamwell Dawids wrote:
> I just attached the patch to the
> ticket:http://www.pyinstaller.org/attachment/ticket/343/pyinstaller-1.5-rev1...
I just discovered that there is a flaw in my patch in file
'bindepend.py'. The incorrect patch hunk looks like this:
@@ -741,6 +770,8 @@
`name`must include the prefix, e.g. ``libpython2.4.so``
"""
- assert sys.platform == 'linux2' or
sys.platform.startswith('sunos'), \
- "Current implementation for Linux and Solaris (sunos) only"
+ "Current implementation for Linux, Solaris (sunos) and AIX only"
+ assert (sys.platform == 'linux2' or
+ sys.platform.startswith('sunos') or
+ sys.platform.startswith('aix'))
lib = None
I guess I somehow messed up the assert. The resulting lines should
look like this:
assert (sys.platform == 'linux2' or
sys.platform.startswith('sunos') or
sys.platform.startswith('aix')), \
"Current implementation for Linux, Solaris (sunos) and AIX only"
Could you fix this in branches/1.5?
Regards,
Martin
--
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.