mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
Changed builddir into build/... to match commonly used setuptools. See r509,
git-svn-id: http://svn.pyinstaller.org/trunk@511 8dd32b29-ccff-0310-8a9a-9233e24343b1
This commit is contained in:
@@ -908,7 +908,8 @@ def build(spec):
|
||||
if SPECPATH == '':
|
||||
SPECPATH = os.getcwd()
|
||||
WARNFILE = os.path.join(SPECPATH, 'warn%s.txt' % specnm)
|
||||
BUILDPATH = os.path.join(SPECPATH, 'build%s' % specnm)
|
||||
BUILDPATH = os.path.join(SPECPATH,
|
||||
"build/pyi.%s/%s" % (config['target_platform'], specnm))
|
||||
if '-o' in sys.argv:
|
||||
bpath = sys.argv[sys.argv.index('-o')+1]
|
||||
if os.path.isabs(bpath):
|
||||
|
||||
Reference in New Issue
Block a user