Files
pyinstaller/buildtests/test8.spec
T
giovannibajo 75371b3a52 Fix absolute paths and remove uses of backward slashes
git-svn-id: http://svn.pyinstaller.org/trunk@270 8dd32b29-ccff-0310-8a9a-9233e24343b1
2006-02-15 16:29:43 +00:00

19 lines
511 B
RPMSpec

a = Analysis([os.path.join(HOMEPATH,'support', '_mountzlib.py'),
os.path.join(HOMEPATH,'support', 'useUnicode.py'),
'test8.py'],
pathex=['.'])
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=1,
name='buildtest8/test8.exe',
debug=0,
strip=0,
upx=0,
console=1 )
coll = COLLECT( exe,
a.binaries,
strip=0,
upx=0,
name='disttest8')