Previously I was using spec file generated by GUI2EXE. The error in
above post was using that script. This time I have used Makespec.py
and did some minor modifications.
For your convenience here is the script I am using:
###############################################
# -*- mode: python -*-
excludes = ['bsddb', 'curses', 'email', '_gtkagg', 'pywin.debugger',
            'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
            '_tkagg', 'Tkconstants', 'Tkinter']
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'),
os.path.join(HOMEPATH,'support/useUnicode.py'), 'Zeno.py'],
             pathex=['/home/prashant/installed/Zeno'],
              excludes=excludes)
pyz = PYZ(a.pure, level=9)
exe = EXE(pyz,
          a.scripts,
          exclude_binaries=1,
          name=r"Zeno",
          debug=True,
          strip=False,
          upx=False,
          console=1 )
coll = COLLECT( exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               strip=False,
               upx=False,
               name=r"dist-gtk")
########################################
> Use "strace -ff" and onedir mode, and post the tail again.

[pid  2750] write(1, "RC: -1 from Zeno\n", 22RC: -1 from Zeno
) = 22
[pid  2750] write(1, "OK.\n", 4OK.
)        = 4
[pid  2750] exit_group(-1)              = ?
Process 2749 resumed
Process 2750 detached
<... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 255}], 0,
NULL) = 2750
--- SIGCHLD (Child exited) @ 0 (0) ---
write(1, "Back to parent...\n", 18Back to parent...
)     = 18
exit_group(255)


This is new error compare to previous one. I have absolutely no Idea
what's going on under the hood.

Prashant

-- 
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.

Reply via email to