[Python-checkins] r64191 - python/trunk/PCbuild/build_tkinter.py

martin.v.loewis python-checkins at python.org
Thu Jun 12 21:00:14 CEST 2008


Author: martin.v.loewis
Date: Thu Jun 12 21:00:14 2008
New Revision: 64191

Log:
Revert bogus disabling of Tcl and Tk.

Modified:
   python/trunk/PCbuild/build_tkinter.py

Modified: python/trunk/PCbuild/build_tkinter.py
==============================================================================
--- python/trunk/PCbuild/build_tkinter.py	(original)
+++ python/trunk/PCbuild/build_tkinter.py	Thu Jun 12 21:00:14 2008
@@ -41,7 +41,7 @@
 
     # TCL
     tcldir = os.path.join(ROOT, TCL)
-    if 0:
+    if 1:
         os.chdir(os.path.join(tcldir, "win"))
         if clean:
             nmake("makefile.vc", "clean")
@@ -49,7 +49,7 @@
         nmake("makefile.vc", "install", INSTALLDIR=dest, MACHINE=machine)
 
     # TK
-    if 0:
+    if 1:
         os.chdir(os.path.join(ROOT, TK, "win"))
         if clean:
             nmake("makefile.vc", "clean", TCLDIR=tcldir)


More information about the Python-checkins mailing list