Files
pyinstaller/buildtests/test-nestedlaunch1.spec
T
naufraghi ef0ba534d3 Fix nested onefile test
git-svn-id: http://svn.pyinstaller.org/trunk@569 8dd32b29-ccff-0310-8a9a-9233e24343b1
2008-12-11 19:20:58 +00:00

16 lines
479 B
RPMSpec

# -*- mode: python -*-
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'),
os.path.join(HOMEPATH,'support/useUnicode.py'),
'test-nestedlaunch1.py'],
pathex=[''])
pyz = PYZ(a.pure)
exe = EXE( pyz,
a.scripts,
a.binaries,
a.zipfiles,
name=os.path.join('dist', 'test-nestedlaunch1', 'test-nestedlaunch1'),
debug=1,
strip=False,
upx=False,
console=1 )