From 7fa6e5e29018d4cbec7fe391dd4aa57df796782f Mon Sep 17 00:00:00 2001 From: htgoebel Date: Mon, 28 Jul 2008 20:58:48 +0000 Subject: [PATCH] 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 --- Build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Build.py b/Build.py index 9243845..b549e01 100755 --- a/Build.py +++ b/Build.py @@ -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):