summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-02-13 20:26:16 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2009-02-13 20:26:16 (GMT)
commita63b99575e2450c14c84b9eeaf3e0969b8b8c450 (patch)
tree37cab624d15f9c4bd23f91da082d5b226eac169f /PCbuild
parent416d31a5d289b4df2e58757e1379e1be37e30c5a (diff)
downloadcpython-a63b99575e2450c14c84b9eeaf3e0969b8b8c450.zip
cpython-a63b99575e2450c14c84b9eeaf3e0969b8b8c450.tar.gz
cpython-a63b99575e2450c14c84b9eeaf3e0969b8b8c450.tar.bz2
Update Tix build procedure.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/build_tkinter.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/PCbuild/build_tkinter.py b/PCbuild/build_tkinter.py
index 21e89cc..2d5797f 100644
--- a/PCbuild/build_tkinter.py
+++ b/PCbuild/build_tkinter.py
@@ -52,18 +52,18 @@ def build(platform, clean):
if 1:
os.chdir(os.path.join(ROOT, TK, "win"))
if clean:
- nmake("makefile.vc", "clean", TCLDIR=tcldir)
- nmake("makefile.vc", TCLDIR=tcldir, MACHINE=machine)
- nmake("makefile.vc", "install", TCLDIR=tcldir, INSTALLDIR=dest, MACHINE=machine)
+ nmake("makefile.vc", "clean", DEBUG=0, TCLDIR=tcldir)
+ nmake("makefile.vc", DEBUG=0, MACHINE=machine)
+ nmake("makefile.vc", "install", DEBUG=0, INSTALLDIR=dest, MACHINE=machine)
# TIX
if 1:
# python9.mak is available at http://svn.python.org
os.chdir(os.path.join(ROOT, TIX, "win"))
if clean:
- nmake("python9.mak", "clean")
- nmake("python9.mak", MACHINE=machine, INSTALL_DIR=dest)
- nmake("python9.mak", "install", INSTALL_DIR=dest)
+ nmake("python.mak", "clean")
+ nmake("python.mak", MACHINE=machine, INSTALL_DIR=dest)
+ nmake("python.mak", "install", INSTALL_DIR=dest)
def main():
if len(sys.argv) < 2 or sys.argv[1] not in ("Win32", "AMD64"):