Files
pyinstaller/buildtests/test-relative-import.spec
T
naufraghi bb3f1ddcad Fix destination path
git-svn-id: http://svn.pyinstaller.org/trunk@568 8dd32b29-ccff-0310-8a9a-9233e24343b1
2008-12-11 19:03:58 +00:00

18 lines
439 B
RPMSpec

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