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:
htgoebel
2008-07-28 20:58:48 +00:00
parent 5f5a063bee
commit 7fa6e5e290
+2 -1
View File
@@ -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):