#176: Bug in Make.py
-------------------------------+--------------------------------------------
Reporter: mrje...@… | Owner: giovannibajo
Type: defect | Status: closed
Priority: normal | Milestone:
Component: PyInstaller | Version:
Severity: blocker | Resolution: fixed
Keywords: |
-------------------------------+--------------------------------------------
Changes (by giovannibajo):
* status: new => closed
* resolution: => fixed
Old description:
> String 'darwin' in line 57 of the file source/linux/Make.py is 6 and not
> 7 characters long. The correct code should look like:
>
> ...
> sys.platform[:6] in ('cygwin','darwin') or
> sys.platform[:7] == 'freebsd' ):
> ...
New description:
String 'darwin' in line 57 of the file source/linux/Make.py is 6 and not 7
characters long. The correct code should look like:
{{{
...
sys.platform[:6] in ('cygwin','darwin') or
sys.platform[:7] == 'freebsd' ):
...
}}}
--
Comment:
Already fixed, thanks!
--
Ticket URL: <http://www.pyinstaller.org/ticket/176#comment:1>
PyInstaller <http://www.pyinstaller.org>
PyInstaller Project
--
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.